結果
| 問題 |
No.1453 手助け
|
| コンテスト | |
| ユーザー |
OR6107
|
| 提出日時 | 2021-03-31 21:11:00 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 28 ms / 2,000 ms |
| コード長 | 355 bytes |
| コンパイル時間 | 369 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-12-15 13:13:06 |
| 合計ジャッジ時間 | 1,598 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
a,b,c,d,e = map(int,input().split())
ans = 0
x = 0
for i in range(1,(b-c)*a +1):
if i == 1:
ans += d
x = d
continue
if i % 10 != 0:
ans += x
continue
if i % 10 == 0 and e <= x:
ans += x-e
x = x-e
continue
if i % 10 == 0 and e > x:
ans += x
continue
print(ans)
OR6107