結果

問題 No.842 初詣
ユーザー bellangeldindonbellangeldindon
提出日時 2019-06-28 21:54:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 326 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-07-02 04:40:50
合計ジャッジ時間 2,302 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,712 KB
testcase_03 AC 51 ms
62,464 KB
testcase_04 AC 47 ms
61,184 KB
testcase_05 AC 54 ms
72,448 KB
testcase_06 AC 46 ms
59,648 KB
testcase_07 AC 50 ms
65,792 KB
testcase_08 AC 44 ms
59,008 KB
testcase_09 AC 47 ms
62,592 KB
testcase_10 AC 67 ms
91,648 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 49 ms
65,280 KB
testcase_13 AC 46 ms
61,184 KB
testcase_14 AC 45 ms
60,032 KB
testcase_15 AC 45 ms
59,776 KB
testcase_16 AC 44 ms
60,032 KB
testcase_17 AC 48 ms
63,092 KB
testcase_18 AC 56 ms
71,056 KB
testcase_19 AC 48 ms
64,000 KB
testcase_20 AC 53 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

coins = [500, 100, 50, 10, 5, 1]
A, B, C, D, E, F, G = map(int, input().split())
coinamount = [A, B, C, D, E, F]
totallist = [0]
for i in range(0, 6):
	N = len(totallist)
	for j in range(0, N):
		for k in range(1, coinamount[i]+1):
			totallist.append(totallist[j]+coins[i]*k)
if G in totallist: print('YES')
else: print('NO')
0