結果
| 問題 |
No.542 1円玉と5円玉
|
| コンテスト | |
| ユーザー |
rocoder
|
| 提出日時 | 2017-07-17 18:39:53 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 360 bytes |
| コンパイル時間 | 230 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-10-08 07:03:24 |
| 合計ジャッジ時間 | 1,511 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 4 WA * 6 |
ソースコード
#coin
A,B=(int(i) for i in input().split())
if A==0:
i=1
while i<=B:
print(5*i)
i+=1
else:
i=0
while i<=B:
if i == 0:
j=1
else:
j=0
while j<=A and j<5:
print(i*5+j)
j+=1
i+=1
if A>4:
while j<=A:
print(i*5+j)
j+=1
rocoder