結果
問題 | No.49 算数の宿題 |
ユーザー | cologne |
提出日時 | 2022-01-24 15:44:19 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 48 ms / 5,000 ms |
コード長 | 372 bytes |
コンパイル時間 | 275 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 51,968 KB |
最終ジャッジ日時 | 2024-12-23 02:16:23 |
合計ジャッジ時間 | 1,360 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 10 |
ソースコード
import sys def input(): return sys.stdin.readline().rstrip() def main(): p = 0 op = '*' q = 0 def calc(a, b, c): return b+c if a == '*' else b*c for i in input(): if i in '*+': p, op, q = calc(op, p, q), i, 0 else: q = 10*q+int(i) print(calc(op, p, q)) if __name__ == '__main__': main()