結果
| 問題 |
No.49 算数の宿題
|
| コンテスト | |
| ユーザー |
ixmel
|
| 提出日時 | 2017-03-30 20:16:21 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 32 ms / 5,000 ms |
| コード長 | 195 bytes |
| コンパイル時間 | 113 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,624 KB |
| 最終ジャッジ日時 | 2024-12-23 01:56:37 |
| 合計ジャッジ時間 | 1,039 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 10 |
ソースコード
s=input() s+="+" out,t=0,-1 for i in range(len(s)): if s[i]=='*' or s[i]=='+': a=s[t+1:i] if t==-1:out=int(a) else: if s[t]=='+':out*=int(a) if s[t]=='*':out+=int(a) t=i print(out)
ixmel