結果

問題 No.222 引き算と足し算
ユーザー KazunKazun
提出日時 2020-09-05 14:52:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 268 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 53,448 KB
最終ジャッジ日時 2024-11-28 15:04:38
合計ジャッジ時間 2,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,152 KB
testcase_01 AC 36 ms
53,448 KB
testcase_02 AC 37 ms
52,340 KB
testcase_03 AC 36 ms
52,772 KB
testcase_04 AC 37 ms
51,924 KB
testcase_05 AC 36 ms
52,208 KB
testcase_06 AC 37 ms
51,812 KB
testcase_07 AC 37 ms
53,104 KB
testcase_08 AC 37 ms
53,372 KB
testcase_09 AC 36 ms
52,804 KB
testcase_10 AC 38 ms
52,480 KB
testcase_11 AC 36 ms
53,188 KB
testcase_12 AC 36 ms
52,136 KB
testcase_13 AC 38 ms
52,404 KB
testcase_14 AC 37 ms
52,300 KB
testcase_15 AC 37 ms
53,276 KB
testcase_16 AC 37 ms
52,972 KB
testcase_17 AC 37 ms
52,156 KB
testcase_18 AC 37 ms
53,420 KB
testcase_19 AC 36 ms
52,948 KB
testcase_20 AC 39 ms
52,824 KB
testcase_21 AC 39 ms
52,760 KB
testcase_22 AC 40 ms
52,308 KB
testcase_23 AC 36 ms
53,108 KB
testcase_24 AC 39 ms
52,844 KB
testcase_25 AC 38 ms
52,568 KB
testcase_26 AC 39 ms
53,152 KB
testcase_27 AC 37 ms
52,364 KB
testcase_28 AC 37 ms
53,080 KB
testcase_29 AC 38 ms
52,872 KB
testcase_30 AC 38 ms
52,584 KB
testcase_31 AC 38 ms
52,848 KB
testcase_32 AC 39 ms
51,884 KB
testcase_33 AC 39 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=input()

if not(S[0]=="+" or S[0]=="-"):
    S="+"+S

try:
    a=float("inf")
    a=S[1:].index("+")
except:
    pass

try:
    b=float("inf")
    b=S[1:].index("-")
except:
    pass

if a<b:
    T=S[:a+1]+"-"+S[a+2:]
else:
    T=S[:b+1]+"+"+S[b+2:]

print(eval(T))
0