結果
問題 | No.222 引き算と足し算 |
ユーザー |
|
提出日時 | 2015-12-15 21:27:11 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 29 ms / 1,000 ms |
コード長 | 284 bytes |
コンパイル時間 | 161 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-11-15 22:08:29 |
合計ジャッジ時間 | 2,061 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
ソースコード
def main(): s = input() t = s[0] for i in range(len(s) - 1): if s[i].isdigit() and not s[i + 1].isdigit(): t += "+" if s[i + 1] == "-" else "-" else: t += s[i + 1] print(eval(t)) if __name__ == '__main__': main()