結果
問題 | No.49 算数の宿題 |
ユーザー | Konton7 |
提出日時 | 2019-05-01 18:46:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 5,000 ms |
コード長 | 393 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-12-23 02:02:35 |
合計ジャッジ時間 | 1,115 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
s = input() num = list(s) opelist = [] for i in range(len(s)): if s[i] in [ "+", "*" ]: num[i] = " " if s[i] in [ "+" ]: opelist.append('*') elif s[i] in [ "*" ]: opelist.append('+') numlist = "".join(num).split(" ") for i in range(len(opelist)): cal = numlist[i] + opelist[i] + numlist[i+1] numlist[i+1] = str(eval(cal)) print(numlist[-1])