結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,328 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 46 ms
59,600 KB
testcase_07 AC 56 ms
64,640 KB
testcase_08 AC 45 ms
59,520 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 38 ms
51,584 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 50 ms
60,928 KB
testcase_15 AC 44 ms
59,264 KB
testcase_16 AC 50 ms
61,952 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 58 ms
64,640 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*d+5*e+1*f
                        if x == g:
                            print('YES')
                            exit()
else:
    print('NO')
0