結果

問題 No.542 1円玉と5円玉
ユーザー rlangevinrlangevin
提出日時 2024-07-25 12:12:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 60,668 KB
最終ジャッジ日時 2024-07-25 12:12:17
合計ジャッジ時間 1,530 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,556 KB
testcase_01 AC 35 ms
52,088 KB
testcase_02 AC 36 ms
52,456 KB
testcase_03 AC 37 ms
53,148 KB
testcase_04 AC 38 ms
52,552 KB
testcase_05 AC 37 ms
54,056 KB
testcase_06 AC 37 ms
53,596 KB
testcase_07 AC 37 ms
52,948 KB
testcase_08 AC 41 ms
58,168 KB
testcase_09 AC 40 ms
58,412 KB
testcase_10 AC 39 ms
52,248 KB
testcase_11 AC 37 ms
52,448 KB
testcase_12 AC 43 ms
60,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int, input().split())
S = set()
for a in range(A + 1):
    for b in range(B + 1):
        S.add(a + 5 * b) 
        
for a in sorted(list(S))[1:]:
    print(a)
0