結果

問題 No.542 1円玉と5円玉
ユーザー トミートミー
提出日時 2024-10-09 15:13:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 58,212 KB
最終ジャッジ日時 2024-10-09 15:13:54
合計ジャッジ時間 1,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,244 KB
testcase_01 AC 37 ms
52,300 KB
testcase_02 AC 38 ms
53,872 KB
testcase_03 AC 38 ms
52,092 KB
testcase_04 AC 37 ms
52,296 KB
testcase_05 AC 39 ms
53,172 KB
testcase_06 AC 40 ms
54,356 KB
testcase_07 AC 40 ms
53,220 KB
testcase_08 AC 43 ms
58,168 KB
testcase_09 AC 43 ms
58,212 KB
testcase_10 AC 39 ms
52,208 KB
testcase_11 AC 38 ms
52,468 KB
testcase_12 AC 44 ms
58,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    a,b=map(int,input().split())
    s=set()
    for i in range(0,a+1):
        for j in range(0,b+1):
            s.add(i+j*5)
    ans=sorted(list(s))
    for i in ans:
        if i!=0:
            print(i)
    

if __name__ == "__main__":
    main()
0