結果

問題 No.1453 手助け
ユーザー KudeKude
提出日時 2021-03-31 21:07:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 162 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 58,980 KB
最終ジャッジ日時 2024-12-15 09:20:23
合計ジャッジ時間 1,745 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,024 KB
testcase_01 AC 39 ms
52,300 KB
testcase_02 AC 34 ms
52,812 KB
testcase_03 AC 37 ms
58,720 KB
testcase_04 AC 34 ms
52,552 KB
testcase_05 AC 36 ms
57,524 KB
testcase_06 AC 39 ms
58,756 KB
testcase_07 AC 37 ms
57,912 KB
testcase_08 AC 37 ms
52,168 KB
testcase_09 AC 37 ms
52,136 KB
testcase_10 AC 35 ms
52,516 KB
testcase_11 AC 36 ms
53,464 KB
testcase_12 AC 36 ms
52,928 KB
testcase_13 AC 33 ms
52,016 KB
testcase_14 AC 35 ms
53,380 KB
testcase_15 AC 38 ms
58,980 KB
testcase_16 AC 34 ms
51,856 KB
testcase_17 AC 33 ms
53,132 KB
testcase_18 AC 38 ms
58,316 KB
testcase_19 AC 38 ms
58,336 KB
testcase_20 AC 37 ms
58,200 KB
testcase_21 AC 35 ms
52,292 KB
testcase_22 AC 33 ms
52,752 KB
testcase_23 AC 33 ms
52,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b, c, d, e = map(int, input().split())
x = d
ans = 0
for i in range(1, a * (b - c) + 1):
    if i % 10 == 0 and e <= x:
        x -= e
    ans += x
print(ans)
0