結果

問題 No.222 引き算と足し算
ユーザー hhgfhn1hhgfhn1
提出日時 2018-11-03 12:39:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 1,000 ms
コード長 590 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 75,372 KB
実行使用メモリ 41,596 KB
最終ジャッジ日時 2024-11-20 18:37:37
合計ジャッジ時間 8,832 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,304 KB
testcase_01 AC 129 ms
41,312 KB
testcase_02 AC 150 ms
41,252 KB
testcase_03 AC 134 ms
41,148 KB
testcase_04 AC 133 ms
41,180 KB
testcase_05 AC 137 ms
41,240 KB
testcase_06 AC 132 ms
41,436 KB
testcase_07 AC 128 ms
41,016 KB
testcase_08 AC 133 ms
41,352 KB
testcase_09 AC 129 ms
40,748 KB
testcase_10 AC 129 ms
41,276 KB
testcase_11 AC 126 ms
41,012 KB
testcase_12 AC 129 ms
41,228 KB
testcase_13 AC 125 ms
41,592 KB
testcase_14 AC 127 ms
41,196 KB
testcase_15 AC 131 ms
41,584 KB
testcase_16 AC 129 ms
41,140 KB
testcase_17 AC 132 ms
41,596 KB
testcase_18 AC 127 ms
41,008 KB
testcase_19 AC 126 ms
41,328 KB
testcase_20 AC 131 ms
41,200 KB
testcase_21 AC 132 ms
41,292 KB
testcase_22 AC 130 ms
41,584 KB
testcase_23 AC 125 ms
41,336 KB
testcase_24 AC 128 ms
41,136 KB
testcase_25 AC 127 ms
41,020 KB
testcase_26 AC 115 ms
39,856 KB
testcase_27 AC 128 ms
41,028 KB
testcase_28 AC 129 ms
41,096 KB
testcase_29 AC 125 ms
41,064 KB
testcase_30 AC 125 ms
41,284 KB
testcase_31 AC 127 ms
41,160 KB
testcase_32 AC 128 ms
40,828 KB
testcase_33 AC 127 ms
41,076 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