Submission #378761


Source Code Expand

n = int(input())
nglist = []
for _ in range(0, 3):
	nglist.append(int(input()))
	
for i in range(0, 100):
	if (n - 3) in nglist:
		if (n - 2) in nglist:
			if (n - 1) in nglist:
				print("NO")
				exit(1)
			else:
				n -= 1
		else:
			n -= 2
	else:
		n -= 3
else:
	print("YES" if n < 1 else "NO")

Submission Info

Submission Time
Task C - 123引き算
User yumechi
Language Python (3.2.3)
Score 0
Code Size 316 Byte
Status WA
Exec Time 135 ms
Memory 8792 KB

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 17
WA × 5
RE × 6
Set Name Test Cases
All test_143_142_141_140.txt, test_1_1_2_3.txt, test_1_2_3_4.txt, test_200_200_2_3.txt, test_231_77_78_80.txt, test_235_124_126_125.txt, test_253_45_47_48.txt, test_297_223_224_225.txt, test_297_294_292_290.txt, test_297_297_30_83.txt, test_297_3_43_72.txt, test_298_125_123_124.txt, test_298_293_295_291.txt, test_298_298_4_8.txt, test_298_36_72_98.txt, test_298_55_3_43.txt, test_298_92_91_295.txt, test_299_200_151_65.txt, test_299_240_35_154.txt, test_299_300_299_298.txt, test_299_33_242_151.txt, test_299_56_57_58.txt, test_299_66_132_198.txt, test_300_271_44_68.txt, test_300_299_298_296.txt, test_300_30_99_183.txt, test_300_4_5_6.txt, test_84_34_64_36.txt
Case Name Status Exec Time Memory
sample_01.txt AC 131 ms 8764 KB
sample_02.txt AC 133 ms 8640 KB
sample_03.txt AC 134 ms 8648 KB
test_143_142_141_140.txt RE 131 ms 8660 KB
test_1_1_2_3.txt WA 132 ms 8768 KB
test_1_2_3_4.txt AC 131 ms 8664 KB
test_200_200_2_3.txt WA 132 ms 8664 KB
test_231_77_78_80.txt AC 133 ms 8788 KB
test_235_124_126_125.txt RE 130 ms 8668 KB
test_253_45_47_48.txt AC 129 ms 8644 KB
test_297_223_224_225.txt RE 131 ms 8792 KB
test_297_294_292_290.txt AC 133 ms 8660 KB
test_297_297_30_83.txt WA 132 ms 8664 KB
test_297_3_43_72.txt AC 134 ms 8664 KB
test_298_125_123_124.txt RE 132 ms 8664 KB
test_298_293_295_291.txt AC 130 ms 8760 KB
test_298_298_4_8.txt WA 131 ms 8660 KB
test_298_36_72_98.txt AC 132 ms 8664 KB
test_298_55_3_43.txt AC 134 ms 8664 KB
test_298_92_91_295.txt AC 133 ms 8664 KB
test_299_200_151_65.txt AC 132 ms 8664 KB
test_299_240_35_154.txt AC 133 ms 8660 KB
test_299_300_299_298.txt WA 135 ms 8644 KB
test_299_33_242_151.txt AC 134 ms 8664 KB
test_299_56_57_58.txt RE 135 ms 8792 KB
test_299_66_132_198.txt AC 134 ms 8772 KB
test_300_271_44_68.txt AC 134 ms 8644 KB
test_300_299_298_296.txt AC 132 ms 8772 KB
test_300_30_99_183.txt AC 134 ms 8644 KB
test_300_4_5_6.txt RE 132 ms 8664 KB
test_84_34_64_36.txt AC 135 ms 8664 KB