結果

問題 No.222 引き算と足し算
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-03 12:39:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 590 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 74,908 KB
実行使用メモリ 54,600 KB
最終ジャッジ日時 2024-04-30 20:47:11
合計ジャッジ時間 7,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,040 KB
testcase_01 AC 131 ms
53,972 KB
testcase_02 AC 129 ms
54,120 KB
testcase_03 AC 128 ms
54,004 KB
testcase_04 AC 131 ms
54,100 KB
testcase_05 AC 130 ms
54,016 KB
testcase_06 AC 129 ms
54,120 KB
testcase_07 AC 126 ms
53,800 KB
testcase_08 AC 126 ms
54,208 KB
testcase_09 AC 127 ms
53,868 KB
testcase_10 AC 127 ms
54,184 KB
testcase_11 AC 129 ms
53,716 KB
testcase_12 AC 127 ms
54,008 KB
testcase_13 AC 129 ms
54,040 KB
testcase_14 AC 127 ms
54,600 KB
testcase_15 AC 127 ms
54,048 KB
testcase_16 AC 127 ms
54,092 KB
testcase_17 AC 128 ms
53,808 KB
testcase_18 AC 127 ms
54,148 KB
testcase_19 AC 128 ms
54,024 KB
testcase_20 AC 129 ms
54,092 KB
testcase_21 AC 132 ms
54,076 KB
testcase_22 AC 126 ms
54,348 KB
testcase_23 AC 122 ms
53,836 KB
testcase_24 AC 125 ms
54,256 KB
testcase_25 AC 127 ms
53,696 KB
testcase_26 AC 126 ms
53,868 KB
testcase_27 AC 130 ms
54,372 KB
testcase_28 AC 125 ms
54,032 KB
testcase_29 AC 124 ms
54,176 KB
testcase_30 AC 129 ms
54,036 KB
testcase_31 AC 126 ms
54,068 KB
testcase_32 AC 125 ms
53,984 KB
testcase_33 AC 129 ms
53,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		String s=scanner.next();
		String op="";
		int ind=0;
		for(int i=1;i<s.length();i++) {
			String tar=s.substring(i, i+1);
			if(tar.equals("+")||tar.equals("-")) {
				op=tar;
				ind=i;
				break;
			}
		}
		String a=s.substring(0,ind);
		String b=s.substring(ind+1,s.length());
		int ans=op.equals("+")?Integer.parseInt(a)-Integer.parseInt(b)
				:Integer.parseInt(a)+Integer.parseInt(b);
		System.out.println(ans);
	}
}
0