結果

問題 No.842 初詣
ユーザー brthyyjpbrthyyjp
提出日時 2020-05-21 04:37:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 68,748 KB
最終ジャッジ日時 2024-10-01 23:53:28
合計ジャッジ時間 1,887 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,420 KB
testcase_01 AC 37 ms
52,404 KB
testcase_02 AC 35 ms
53,000 KB
testcase_03 AC 49 ms
64,464 KB
testcase_04 AC 49 ms
63,572 KB
testcase_05 AC 54 ms
67,000 KB
testcase_06 AC 43 ms
60,280 KB
testcase_07 AC 53 ms
65,348 KB
testcase_08 AC 44 ms
60,788 KB
testcase_09 AC 51 ms
65,564 KB
testcase_10 AC 58 ms
68,748 KB
testcase_11 AC 37 ms
52,356 KB
testcase_12 AC 45 ms
61,492 KB
testcase_13 AC 50 ms
64,744 KB
testcase_14 AC 47 ms
62,200 KB
testcase_15 AC 42 ms
60,668 KB
testcase_16 AC 48 ms
62,976 KB
testcase_17 AC 43 ms
60,780 KB
testcase_18 AC 44 ms
61,612 KB
testcase_19 AC 53 ms
66,532 KB
testcase_20 AC 54 ms
65,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d, e, f, g = map(int, input().split())
for i in range(a+1):
    for j in range(b+1):
        for k in range(c+1):
            for l in range(d+1):
                for m in range(e+1):
                    for n in range(f+1):
                        x = 500*i+100*j+50*k+10*l+5*m+1*n
                        if x == g:
                            print('YES')
                            exit()
else:
    print('NO')
0