結果

問題 No.2138 Add Bacon
ユーザー yumechiyumechi
提出日時 2023-01-19 03:11:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 143 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 53,812 KB
最終ジャッジ日時 2024-06-12 02:54:47
合計ジャッジ時間 2,379 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,500 KB
testcase_01 AC 33 ms
51,944 KB
testcase_02 AC 33 ms
52,568 KB
testcase_03 AC 32 ms
53,524 KB
testcase_04 AC 32 ms
52,096 KB
testcase_05 AC 33 ms
52,884 KB
testcase_06 AC 33 ms
53,072 KB
testcase_07 AC 32 ms
53,292 KB
testcase_08 AC 36 ms
51,680 KB
testcase_09 AC 34 ms
52,920 KB
testcase_10 AC 33 ms
52,880 KB
testcase_11 AC 33 ms
52,692 KB
testcase_12 AC 34 ms
52,828 KB
testcase_13 AC 33 ms
53,256 KB
testcase_14 AC 33 ms
52,004 KB
testcase_15 AC 33 ms
52,980 KB
testcase_16 AC 37 ms
53,476 KB
testcase_17 AC 35 ms
52,068 KB
testcase_18 AC 34 ms
52,372 KB
testcase_19 AC 33 ms
53,120 KB
testcase_20 AC 32 ms
52,484 KB
testcase_21 AC 32 ms
52,180 KB
testcase_22 AC 34 ms
53,524 KB
testcase_23 AC 33 ms
53,536 KB
testcase_24 AC 32 ms
51,548 KB
testcase_25 AC 36 ms
53,812 KB
testcase_26 AC 36 ms
52,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(a, b, c, d, e):
    if d <= e:
        return a - b
    return (a - b) + (d - e) * c

print(solve(*list(map(int, input().split()))))
0