結果

問題 No.222 引き算と足し算
ユーザー noriocnorioc
提出日時 2024-07-16 21:49:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 1,000 ms
コード長 202 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 64,504 KB
最終ジャッジ日時 2024-07-16 21:49:05
合計ジャッジ時間 3,477 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,368 KB
testcase_01 AC 61 ms
62,848 KB
testcase_02 AC 54 ms
62,720 KB
testcase_03 AC 52 ms
62,976 KB
testcase_04 AC 55 ms
62,848 KB
testcase_05 AC 54 ms
62,720 KB
testcase_06 AC 52 ms
63,104 KB
testcase_07 AC 54 ms
62,976 KB
testcase_08 AC 54 ms
62,848 KB
testcase_09 AC 52 ms
62,976 KB
testcase_10 AC 56 ms
62,996 KB
testcase_11 AC 55 ms
63,880 KB
testcase_12 AC 53 ms
64,160 KB
testcase_13 AC 59 ms
63,168 KB
testcase_14 AC 55 ms
62,748 KB
testcase_15 AC 54 ms
63,540 KB
testcase_16 AC 53 ms
63,612 KB
testcase_17 AC 55 ms
63,232 KB
testcase_18 AC 55 ms
64,084 KB
testcase_19 AC 54 ms
63,304 KB
testcase_20 AC 54 ms
63,436 KB
testcase_21 AC 54 ms
63,848 KB
testcase_22 AC 54 ms
63,740 KB
testcase_23 AC 52 ms
64,156 KB
testcase_24 AC 52 ms
64,504 KB
testcase_25 AC 51 ms
63,680 KB
testcase_26 AC 53 ms
63,308 KB
testcase_27 AC 53 ms
63,508 KB
testcase_28 AC 55 ms
63,572 KB
testcase_29 AC 54 ms
63,872 KB
testcase_30 AC 54 ms
63,900 KB
testcase_31 AC 54 ms
63,232 KB
testcase_32 AC 54 ms
63,380 KB
testcase_33 AC 54 ms
63,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

S = input()

m = re.match('([+-]?\d+)([+-])([+-]?\d+)', S)
a, op, b = m.groups()
match op:
    case '+':
        ans = int(a) - int(b)
    case '-':
        ans = int(a) + int(b)

print(ans)
0