結果

問題 No.222 引き算と足し算
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-03-26 20:08:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 307 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 65,128 KB
最終ジャッジ日時 2024-06-10 13:17:05
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
63,184 KB
testcase_01 AC 52 ms
64,172 KB
testcase_02 AC 54 ms
64,704 KB
testcase_03 AC 53 ms
64,228 KB
testcase_04 AC 53 ms
63,380 KB
testcase_05 AC 53 ms
63,372 KB
testcase_06 AC 53 ms
63,624 KB
testcase_07 AC 55 ms
64,088 KB
testcase_08 AC 55 ms
63,972 KB
testcase_09 AC 55 ms
64,292 KB
testcase_10 AC 56 ms
63,424 KB
testcase_11 AC 57 ms
64,096 KB
testcase_12 AC 54 ms
63,436 KB
testcase_13 AC 54 ms
63,788 KB
testcase_14 AC 56 ms
64,680 KB
testcase_15 AC 53 ms
63,236 KB
testcase_16 AC 53 ms
63,548 KB
testcase_17 AC 53 ms
63,768 KB
testcase_18 AC 55 ms
63,320 KB
testcase_19 AC 54 ms
62,892 KB
testcase_20 AC 55 ms
63,780 KB
testcase_21 AC 53 ms
63,440 KB
testcase_22 AC 54 ms
63,072 KB
testcase_23 AC 52 ms
64,428 KB
testcase_24 AC 55 ms
65,128 KB
testcase_25 AC 55 ms
62,968 KB
testcase_26 AC 54 ms
63,832 KB
testcase_27 AC 53 ms
63,100 KB
testcase_28 AC 53 ms
64,044 KB
testcase_29 AC 55 ms
63,224 KB
testcase_30 AC 53 ms
63,376 KB
testcase_31 AC 53 ms
64,648 KB
testcase_32 AC 55 ms
62,700 KB
testcase_33 AC 54 ms
64,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = input().strip()
import re
#print(x)
c = re.match("^([+-]*)(\d+)([+-]*)(\d+)$", x)
#print(c.group(3))
a, b = int(c.group(2)), int(c.group(4))
#print(a, b)
if x[0] == "-":
    a = -a
if len(c.group(3)) == 2 and c.group(3)[1] == "-":
    b = -b
if c.group(3)[0] == "+":
    print(a-b)
else:
    print(a+b)
0