結果

問題 No.542 1円玉と5円玉
ユーザー kohei2019kohei2019
提出日時 2022-02-07 22:07:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 59,640 KB
最終ジャッジ日時 2024-06-22 11:01:44
合計ジャッジ時間 1,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,068 KB
testcase_01 AC 35 ms
52,556 KB
testcase_02 AC 36 ms
52,284 KB
testcase_03 AC 34 ms
52,756 KB
testcase_04 AC 35 ms
52,112 KB
testcase_05 AC 35 ms
52,404 KB
testcase_06 AC 36 ms
53,080 KB
testcase_07 AC 35 ms
52,640 KB
testcase_08 AC 38 ms
58,920 KB
testcase_09 AC 38 ms
59,628 KB
testcase_10 AC 34 ms
52,212 KB
testcase_11 AC 38 ms
52,700 KB
testcase_12 AC 40 ms
59,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int,input().split())

ans = set()
for i in range(A+1):
    for j in range(B+1):
        ans.add(i+5*j)


ans =list(ans)
ans.sort()
ans.remove(0)
print(*ans,sep='\n')
0