結果

問題 No.49 算数の宿題
ユーザー matriematrie
提出日時 2020-12-23 09:33:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 141 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,368 KB
最終ジャッジ日時 2024-12-23 02:13:44
合計ジャッジ時間 1,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input().translate(str.maketrans({'+':' * ','*':' + '}))
l=s.split()
a=l[0]
for i in range(1,len(l),2):
	a=str(eval(a+l[i]+l[i+1]))
print(a)
0