結果

問題 No.49 算数の宿題
ユーザー ntudantuda
提出日時 2023-12-27 23:50:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 395 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-09-27 15:36:34
合計ジャッジ時間 1,216 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,736 KB
testcase_01 AC 33 ms
53,056 KB
testcase_02 AC 32 ms
53,412 KB
testcase_03 AC 33 ms
52,628 KB
testcase_04 AC 33 ms
53,288 KB
testcase_05 AC 34 ms
52,636 KB
testcase_06 AC 35 ms
53,816 KB
testcase_07 AC 37 ms
52,084 KB
testcase_08 AC 37 ms
52,736 KB
testcase_09 AC 36 ms
52,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input() + "*"
val = 0
cal = 0
nextv = 0
for s in S:
    if s == "*":
        if cal == 0:
            val += nextv
        else:
            val *= nextv
        nextv = 0
        cal = 0
    elif s == "+":
        if cal == 0:
            val += nextv
        else:
            val *= nextv
        nextv = 0
        cal = 1
    else:
        nextv *= 10
        nextv += int(s)
print(val)
0