結果

問題 No.542 1円玉と5円玉
ユーザー ノットカワズ
提出日時 2017-07-16 02:09:08
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 193 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-08 02:45:00
合計ジャッジ時間 1,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 5 WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-


a, b = map(int, input().split())
temp = []
for i in range(b+1):
    for j in range(a+1):
        temp.append(j*1 + i*5)
for x in temp:
    if x != 0:
        print(x)
0