結果

問題 No.842 初詣
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-07-07 22:21:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 561 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 75,160 KB
最終ジャッジ日時 2024-10-05 14:08:26
合計ジャッジ時間 2,389 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,996 KB
testcase_01 AC 34 ms
53,568 KB
testcase_02 AC 33 ms
53,208 KB
testcase_03 AC 40 ms
62,204 KB
testcase_04 AC 44 ms
59,968 KB
testcase_05 AC 45 ms
67,036 KB
testcase_06 AC 38 ms
59,308 KB
testcase_07 AC 41 ms
61,564 KB
testcase_08 AC 38 ms
59,536 KB
testcase_09 AC 41 ms
60,928 KB
testcase_10 AC 55 ms
75,160 KB
testcase_11 AC 36 ms
52,144 KB
testcase_12 AC 42 ms
59,820 KB
testcase_13 AC 54 ms
60,768 KB
testcase_14 AC 41 ms
60,848 KB
testcase_15 AC 39 ms
59,120 KB
testcase_16 AC 39 ms
59,764 KB
testcase_17 AC 39 ms
59,776 KB
testcase_18 AC 39 ms
59,748 KB
testcase_19 AC 41 ms
61,632 KB
testcase_20 AC 49 ms
67,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
A, B, C, D, E, F, G = map(int, input().split())
print('YES' if any(500 * a + 100 * b + 50 * c + 10 * d + 5 * e + 1 * f == G for a, b, c, d, e, f in itertools.product(range(A + 1), range(B + 1), range(C + 1), range(D + 1), range(E + 1), range(F + 1))) else 'NO')
0