結果

問題 No.842 初詣
ユーザー pete1288998pete1288998
提出日時 2020-06-21 18:34:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-07-03 18:10:26
合計ジャッジ時間 1,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 49 ms
10,880 KB
testcase_04 AC 40 ms
10,752 KB
testcase_05 AC 96 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 65 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 47 ms
10,752 KB
testcase_10 AC 164 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 38 ms
10,752 KB
testcase_14 AC 33 ms
10,752 KB
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 34 ms
10,752 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 45 ms
10,752 KB
testcase_20 AC 98 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c = list(map(int,input().split()))

C = c[:-1]

g = c[-1]

for a in range(C[0]+1):
    for b in range(C[1]+1):
        for c in range(C[2]+1):
            for d in range(C[3]+1):
                for e in range(C[4]+1):
                    for f in range(C[5]+1):
                        total = 500*a + 100*b + 50*c + 10*d + 5*e + 1*f
                        if total == g:
                            print('YES')
                            exit()

print('NO')                        
0