結果

問題 No.542 1円玉と5円玉
ユーザー MarioMario
提出日時 2018-05-12 10:51:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 237 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,824 KB
最終ジャッジ日時 2024-06-28 09:32:11
合計ジャッジ時間 3,796 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,440 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 36 ms
10,624 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations

a, b = map(int, input().split())
coins = [1] * a + [5] * b

total = set()

for n in range(1, a+b+1):
    for v in combinations(coins, n):
        total.add(sum(v))

for t in sorted(total):
    print(t)
0