結果

問題 No.542 1円玉と5円玉
ユーザー dangodango
提出日時 2023-06-06 20:18:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 60,436 KB
最終ジャッジ日時 2024-06-09 06:19:06
合計ジャッジ時間 1,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,056 KB
testcase_01 AC 34 ms
52,576 KB
testcase_02 AC 33 ms
52,332 KB
testcase_03 AC 33 ms
52,836 KB
testcase_04 AC 31 ms
52,764 KB
testcase_05 AC 34 ms
53,264 KB
testcase_06 AC 37 ms
53,564 KB
testcase_07 AC 34 ms
52,684 KB
testcase_08 AC 37 ms
59,576 KB
testcase_09 AC 36 ms
59,224 KB
testcase_10 AC 31 ms
52,812 KB
testcase_11 AC 31 ms
53,184 KB
testcase_12 AC 40 ms
60,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A, B = map(int,input().split())
ANS = []
AA = [i for i in range(A + 1)]
BB = [i*5 for i in range(B + 1)]
for I in AA:
    for J in BB:
        ANS.append(I + J)
for I in sorted(set(ANS)):
    if I == 0:
        continue
    print(I)
0