結果

問題 No.49 算数の宿題
ユーザー mkawa2mkawa2
提出日時 2019-12-20 05:47:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 713 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-23 02:05:38
合計ジャッジ時間 1,145 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]

def main():
    s = input()
    for i in range(100):
        if not s[i].isdigit(): break
    ei = i
    pre = int(s[:ei])
    while ei < len(s) - 1:
        op = s[ei] == "+"
        si = ei + 1
        for ei in range(si, len(s)):
            if not s[ei].isdigit(): break
        if ei==len(s)-1:ei+=1
        if op:
            pre *= int(s[si:ei])
        else:
            pre += int(s[si:ei])
    print(pre)

main()
0