結果

問題 No.222 引き算と足し算
ユーザー GrenacheGrenache
提出日時 2015-06-08 12:12:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 1,000 ms
コード長 790 bytes
コンパイル時間 3,480 ms
コンパイル使用メモリ 75,560 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-11-15 21:54:05
合計ジャッジ時間 8,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,476 KB
testcase_01 AC 125 ms
41,244 KB
testcase_02 AC 107 ms
40,244 KB
testcase_03 AC 123 ms
41,024 KB
testcase_04 AC 122 ms
41,248 KB
testcase_05 AC 121 ms
41,572 KB
testcase_06 AC 124 ms
41,008 KB
testcase_07 AC 128 ms
41,096 KB
testcase_08 AC 123 ms
41,064 KB
testcase_09 AC 122 ms
40,980 KB
testcase_10 AC 123 ms
41,228 KB
testcase_11 AC 114 ms
40,280 KB
testcase_12 AC 119 ms
41,052 KB
testcase_13 AC 122 ms
41,320 KB
testcase_14 AC 123 ms
41,524 KB
testcase_15 AC 127 ms
41,508 KB
testcase_16 AC 123 ms
41,632 KB
testcase_17 AC 122 ms
41,368 KB
testcase_18 AC 119 ms
40,772 KB
testcase_19 AC 107 ms
40,180 KB
testcase_20 AC 122 ms
41,044 KB
testcase_21 AC 121 ms
41,376 KB
testcase_22 AC 130 ms
41,364 KB
testcase_23 AC 130 ms
41,188 KB
testcase_24 AC 114 ms
40,572 KB
testcase_25 AC 104 ms
39,640 KB
testcase_26 AC 122 ms
41,520 KB
testcase_27 AC 122 ms
41,004 KB
testcase_28 AC 118 ms
40,936 KB
testcase_29 AC 121 ms
41,144 KB
testcase_30 AC 109 ms
40,088 KB
testcase_31 AC 123 ms
41,292 KB
testcase_32 AC 122 ms
41,364 KB
testcase_33 AC 124 ms
41,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;


public class Main_yukicoder222 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        String xopy = sc.next();

        String regex = "([+-]?\\d+)([+-])([+-]?\\d+)";
        Pattern p = Pattern.compile(regex);
        
        Matcher m = p.matcher(xopy);
        if (m.find()) {
        	int x = Integer.parseInt(m.group(1));
        	String op = m.group(2);
        	int y = Integer.parseInt(m.group(3));
        	
        	if (op.equals("+")) {
        		System.out.println(x - y);
        	} else {
        		System.out.println(x + y);
        	}
        } else {
        	System.out.println("NG");
        }
        
        sc.close();
    }
}
0