結果

問題 No.222 引き算と足し算
ユーザー marumaru
提出日時 2016-05-03 18:47:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 904 bytes
コンパイル時間 3,536 ms
コンパイル使用メモリ 75,296 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-11-15 22:10:35
合計ジャッジ時間 8,990 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,060 KB
testcase_01 AC 129 ms
40,928 KB
testcase_02 AC 125 ms
40,764 KB
testcase_03 AC 128 ms
41,328 KB
testcase_04 AC 127 ms
41,052 KB
testcase_05 WA -
testcase_06 AC 130 ms
41,088 KB
testcase_07 AC 128 ms
41,276 KB
testcase_08 WA -
testcase_09 AC 126 ms
41,400 KB
testcase_10 AC 126 ms
41,368 KB
testcase_11 WA -
testcase_12 AC 133 ms
41,304 KB
testcase_13 AC 128 ms
40,884 KB
testcase_14 WA -
testcase_15 AC 129 ms
40,920 KB
testcase_16 AC 128 ms
41,112 KB
testcase_17 WA -
testcase_18 AC 130 ms
41,328 KB
testcase_19 AC 128 ms
41,208 KB
testcase_20 WA -
testcase_21 AC 131 ms
41,040 KB
testcase_22 WA -
testcase_23 AC 128 ms
41,068 KB
testcase_24 AC 127 ms
41,244 KB
testcase_25 WA -
testcase_26 AC 130 ms
41,332 KB
testcase_27 AC 127 ms
41,048 KB
testcase_28 WA -
testcase_29 AC 126 ms
40,924 KB
testcase_30 AC 128 ms
41,012 KB
testcase_31 AC 128 ms
41,328 KB
testcase_32 AC 127 ms
41,496 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class yukicoder_222 {
	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		
		String str = stdIn.next();
		final String PLUS = "+";
		
		Pattern p = Pattern.compile("^[-]?[0-9]{1,6}");
		Matcher m = p.matcher(str);
		
		if (m.find()) {
			String matchstr =m.group();
			
			int n1 = Integer.parseInt(matchstr);
			int n2 = Integer.parseInt(str.substring(matchstr.length() + 1));
			
			int result = 0;
			
			if (str.substring(matchstr.length(),matchstr.length() + 1).equals(PLUS)) {
				if (str.substring(matchstr.length() + 1,matchstr.length() + 2) == "-") {
					result = n1 + Math.abs(n2);
				} else {
					result = n1 - n2;
				}
			} else {
				result = n1 + n2;
			}
			System.out.println(result);
			
		} else {
			System.out.println("no matches!");
		}
		
	}
}
	
0