結果

問題 No.222 引き算と足し算
ユーザー marumaru
提出日時 2016-05-03 19:14:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 1,246 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 77,828 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-11-15 22:10:45
合計ジャッジ時間 8,478 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,236 KB
testcase_01 AC 117 ms
41,060 KB
testcase_02 AC 105 ms
40,312 KB
testcase_03 AC 118 ms
41,160 KB
testcase_04 AC 120 ms
41,632 KB
testcase_05 AC 106 ms
40,040 KB
testcase_06 AC 114 ms
40,932 KB
testcase_07 AC 120 ms
41,416 KB
testcase_08 AC 117 ms
41,288 KB
testcase_09 AC 103 ms
40,040 KB
testcase_10 AC 119 ms
41,504 KB
testcase_11 AC 115 ms
41,056 KB
testcase_12 AC 117 ms
41,264 KB
testcase_13 AC 119 ms
41,344 KB
testcase_14 AC 118 ms
41,240 KB
testcase_15 AC 114 ms
40,896 KB
testcase_16 AC 118 ms
41,520 KB
testcase_17 AC 106 ms
40,228 KB
testcase_18 AC 124 ms
41,232 KB
testcase_19 AC 120 ms
41,392 KB
testcase_20 AC 120 ms
41,208 KB
testcase_21 AC 113 ms
41,060 KB
testcase_22 AC 115 ms
41,540 KB
testcase_23 AC 105 ms
40,028 KB
testcase_24 AC 120 ms
41,364 KB
testcase_25 AC 117 ms
41,516 KB
testcase_26 AC 108 ms
40,040 KB
testcase_27 AC 121 ms
41,148 KB
testcase_28 AC 120 ms
41,344 KB
testcase_29 AC 107 ms
40,136 KB
testcase_30 AC 118 ms
41,292 KB
testcase_31 AC 121 ms
41,260 KB
testcase_32 AC 118 ms
41,720 KB
testcase_33 AC 120 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

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 = "+";
		final String MINUS = "-";
		
		Pattern p = Pattern.compile("^[-+]?[0-9]{1,6}");
		Matcher m = p.matcher(str);
		
		if (m.find()) {
			String matchstr = m.group();
			String matchstr1 = matchstr;
			
			if(matchstr.substring(0, 1).equals(PLUS)) {
				matchstr1 = matchstr.substring(1);
			}
			
			int n1 = Integer.parseInt(matchstr1);
			int n2;
			
			if (str.substring(matchstr.length() + 1,matchstr.length() + 2).equals(PLUS)) {
				n2 = Integer.parseInt(str.substring(matchstr.length() + 2));
			} else {
				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).equals(MINUS)) {
					result = n1 + Math.abs(n2);
				} else {
					result = n1 - n2;
				}
			} else {
				result = n1 + n2;
			}
			System.out.println(result);
			
		} else {
			System.out.println("no matches!");
		}
		
	}
}
	
0