結果

問題 No.49 算数の宿題
ユーザー とりゐとりゐ
提出日時 2023-06-06 14:30:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 255 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 53,940 KB
最終ジャッジ日時 2024-06-09 06:13:37
合計ジャッジ時間 1,180 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,620 KB
testcase_01 AC 33 ms
52,460 KB
testcase_02 AC 32 ms
52,196 KB
testcase_03 AC 33 ms
52,832 KB
testcase_04 AC 32 ms
52,924 KB
testcase_05 AC 32 ms
53,940 KB
testcase_06 AC 31 ms
52,124 KB
testcase_07 AC 31 ms
53,664 KB
testcase_08 AC 32 ms
52,724 KB
testcase_09 AC 31 ms
52,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=input()

def number():
  global i
  tmp=0
  while i<len(s) and '0'<=s[i]<='9':
    tmp=10*tmp+int(s[i])
    i+=1
  return tmp

i=0
res=number()
while i!=len(s):
  c=s[i]
  i+=1
  res2=number()
  if c=='+':
    res*=res2
  else:
    res+=res2

print(res)
0