結果

問題 No.842 初詣
ユーザー hiragnhiragn
提出日時 2022-11-12 22:52:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-09-14 11:01:29
合計ジャッジ時間 1,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 42 ms
10,368 KB
testcase_04 AC 36 ms
10,496 KB
testcase_05 AC 68 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 45 ms
10,496 KB
testcase_08 AC 31 ms
10,368 KB
testcase_09 AC 40 ms
10,496 KB
testcase_10 AC 103 ms
10,624 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 31 ms
10,496 KB
testcase_13 AC 37 ms
10,624 KB
testcase_14 AC 34 ms
10,496 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 34 ms
10,496 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 37 ms
10,496 KB
testcase_20 AC 69 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools


def main():
    a, b, c, d, e, f, g = map(int, input().split())
    for aa, bb, cc, dd, ee, ff in itertools.product(
            range(a + 1), range(b + 1), range(c + 1), range(d + 1), range(e + 1), range(f + 1)):
        if 500 * aa + 100 * bb + 50 * cc + 10 * dd + 5 * ee + ff == g:
            print("YES")
            exit()
    print("NO")


if __name__ == "__main__":
    main()
0