結果
問題 | No.708 (+ー)の式 |
ユーザー | ttr |
提出日時 | 2020-02-10 20:01:05 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 479 bytes |
コンパイル時間 | 127 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,120 KB |
最終ジャッジ日時 | 2024-10-01 06:30:22 |
合計ジャッジ時間 | 6,463 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
S = input() i = 0 ans = 0 sgn = 1 flag = True while i < len(S): if S[i] == "+" and flag: sgn = 1 continue elif S[i] == "+": sgn = -1 elif S[i] == "-" and flag: sgn = -1 elif S[i] == "-": sgn = 1 elif S[i] == "(" and i > 0 and S[i-1] == "-": flag = False elif S[i] == "(": i += 1 continue elif S[i] == ")": flag = True else: ans += sgn*int(S[i]) i += 1 print(ans)