結果
| 問題 |
No.1453 手助け
|
| コンテスト | |
| ユーザー |
googol_S0
|
| 提出日時 | 2021-03-31 21:19:55 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 135 bytes |
| コンパイル時間 | 904 ms |
| コンパイル使用メモリ | 82,476 KB |
| 実行使用メモリ | 59,660 KB |
| 最終ジャッジ日時 | 2024-12-15 14:17:02 |
| 合計ジャッジ時間 | 2,862 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 WA * 11 |
ソースコード
A,B,C,D,E=map(int,input().split())
B-=C
A*=B
ANS=0
for i in range(A):
ANS+=D
if D%10:
continue
elif E<=D:
D-=E
print(ANS)
googol_S0