結果

問題 No.49 算数の宿題
ユーザー トミートミー
提出日時 2024-06-30 20:28:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 53,628 KB
最終ジャッジ日時 2024-06-30 20:28:51
合計ジャッジ時間 1,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,220 KB
testcase_01 AC 37 ms
53,628 KB
testcase_02 AC 38 ms
52,464 KB
testcase_03 AC 37 ms
52,936 KB
testcase_04 AC 36 ms
52,344 KB
testcase_05 AC 37 ms
52,492 KB
testcase_06 AC 38 ms
52,780 KB
testcase_07 AC 38 ms
53,476 KB
testcase_08 AC 38 ms
52,444 KB
testcase_09 AC 37 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    s=input()
    k=s.split("+")
    l=[]
    for i in k:
        l.extend(map(int,i.split("*")))
    m=[]
    for i in s:
        if i in ["+","*"]:
            m.append(i)
    # print(l)
    # print(m)
    ans=l[0]
    for i in range(len(m)):
        if m[i]=="*":
            ans+=l[i+1]
        else:
            ans*=l[i+1]
    print(ans)
    
if __name__=="__main__":
    main()
0