結果
| 問題 | No.1453 手助け |
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2021-05-05 21:28:35 |
| 言語 | PyPy3 (7.3.23 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 67 ms / 2,000 ms |
| + 358µs | |
| コード長 | 185 bytes |
| 記録 | |
| コンパイル時間 | 230 ms |
| コンパイル使用メモリ | 95,596 KB |
| 実行使用メモリ | 82,688 KB |
| 最終ジャッジ日時 | 2026-08-26 05:54:58 |
| 合計ジャッジ時間 | 3,202 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
a,b,c,d,e = map(int,input().split())
ans = x = 0
for i in range(1,a*(b-c)+1):
if i==1:
x = d
elif i%10==0 and e <= x:
x = x-e
ans += x
print(ans)
convexineq