結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,684 KB
testcase_02 WA -
testcase_03 AC 38 ms
52,756 KB
testcase_04 AC 38 ms
52,088 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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