結果

問題 No.542 1円玉と5円玉
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-23 05:26:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 59,700 KB
最終ジャッジ日時 2024-07-03 19:05:53
合計ジャッジ時間 1,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,264 KB
testcase_01 AC 37 ms
52,936 KB
testcase_02 AC 37 ms
52,452 KB
testcase_03 AC 36 ms
52,516 KB
testcase_04 AC 36 ms
52,532 KB
testcase_05 AC 36 ms
52,688 KB
testcase_06 AC 37 ms
53,296 KB
testcase_07 AC 39 ms
52,936 KB
testcase_08 AC 41 ms
58,672 KB
testcase_09 AC 41 ms
59,148 KB
testcase_10 AC 37 ms
52,144 KB
testcase_11 AC 37 ms
53,364 KB
testcase_12 AC 42 ms
59,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int, input().split())
ans = []
for i in range(a+1):
    for j in range(b+1):
        ans.append(i+5*j)
ans = list(set(ans))
ans.sort()
ans = ans[1:]
for a in ans:
    print(a)
0