結果

問題 No.542 1円玉と5円玉
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-30 02:00:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 131 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 59,100 KB
最終ジャッジ日時 2024-09-30 02:00:48
合計ジャッジ時間 1,281 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,148 KB
testcase_01 AC 33 ms
53,112 KB
testcase_02 AC 33 ms
53,056 KB
testcase_03 AC 32 ms
52,196 KB
testcase_04 AC 31 ms
52,148 KB
testcase_05 AC 33 ms
53,552 KB
testcase_06 AC 34 ms
53,864 KB
testcase_07 AC 33 ms
53,368 KB
testcase_08 AC 36 ms
58,120 KB
testcase_09 AC 36 ms
58,484 KB
testcase_10 AC 33 ms
53,728 KB
testcase_11 AC 36 ms
52,596 KB
testcase_12 AC 37 ms
59,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int,input().split())
c=set()
for i in range(a+1):
	for j in range(b+1):
		c.add(1*i+5*j)
c=sorted(c)
print(*c[1:],sep="\n")
0