結果

問題 No.542 1円玉と5円玉
ユーザー H20H20
提出日時 2020-12-01 21:51:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 60,216 KB
最終ジャッジ日時 2024-09-13 03:10:44
合計ジャッジ時間 1,534 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,204 KB
testcase_01 AC 37 ms
52,724 KB
testcase_02 AC 36 ms
52,036 KB
testcase_03 AC 36 ms
52,664 KB
testcase_04 AC 36 ms
52,952 KB
testcase_05 AC 37 ms
53,432 KB
testcase_06 AC 39 ms
53,072 KB
testcase_07 AC 38 ms
53,560 KB
testcase_08 AC 41 ms
58,968 KB
testcase_09 AC 46 ms
60,192 KB
testcase_10 AC 36 ms
52,772 KB
testcase_11 AC 37 ms
52,348 KB
testcase_12 AC 42 ms
60,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int, input().split())
L = []
for i in range(B+1):
    for j in range(A+1):
        L.append(i*5+j)
L = list(set(L))
L.sort()
for i in range(1,len(L)):
    print(L[i])
0