結果

問題 No.542 1円玉と5円玉
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2021-12-12 16:57:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 332 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-07-21 04:06:18
合計ジャッジ時間 4,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
56,960 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 36 ms
51,456 KB
testcase_04 AC 49 ms
63,360 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product

A, B = map(int, input().split())
lists = ([1] * A) + ([5] * B)
ans = set()

for bools in product([True, False], repeat = len(lists)):
    tmp = 0

    for i, bool in enumerate(bools):
        if bool: tmp += lists[i]

    if tmp != 0:  ans.add(str(tmp))

print("\n".join(sorted(list(ans), key = int)))
0