結果

問題 No.842 初詣
ユーザー GrayCoderGrayCoder
提出日時 2019-06-28 22:05:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-07-02 04:46:09
合計ジャッジ時間 4,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 245 ms
10,624 KB
testcase_03 AC 183 ms
10,624 KB
testcase_04 AC 180 ms
10,624 KB
testcase_05 AC 230 ms
10,624 KB
testcase_06 AC 268 ms
10,624 KB
testcase_07 AC 268 ms
10,624 KB
testcase_08 AC 269 ms
10,496 KB
testcase_09 AC 213 ms
10,624 KB
testcase_10 AC 172 ms
10,496 KB
testcase_11 AC 255 ms
10,624 KB
testcase_12 AC 34 ms
10,624 KB
testcase_13 AC 184 ms
10,624 KB
testcase_14 AC 278 ms
10,624 KB
testcase_15 AC 275 ms
10,624 KB
testcase_16 AC 275 ms
10,624 KB
testcase_17 AC 50 ms
10,624 KB
testcase_18 AC 35 ms
10,496 KB
testcase_19 AC 183 ms
10,496 KB
testcase_20 AC 277 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
from sys import stdin

def main():
    A, B, C, D, E, F, G = map(int, input().split())

    for a, b, c, d, e in product(range(11), repeat=5):
        money = min(a, A) * 500
        money += min(b, B) * 100
        money += min(c, C) * 50
        money += min(d, D) * 10
        money += min(e, E) * 5
        if G < money:
            continue
        elif G - money <= F:
            print('YES')
            break
    else:
        print('NO')

input = lambda: stdin.readline()
main()
0