結果

問題 No.222 引き算と足し算
ユーザー 37zigen37zigen
提出日時 2020-02-19 11:30:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 861 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 78,076 KB
実行使用メモリ 41,236 KB
最終ジャッジ日時 2024-10-07 23:22:34
合計ジャッジ時間 6,864 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
40,004 KB
testcase_01 AC 105 ms
40,992 KB
testcase_02 AC 112 ms
40,852 KB
testcase_03 AC 111 ms
40,844 KB
testcase_04 AC 126 ms
41,000 KB
testcase_05 AC 112 ms
40,964 KB
testcase_06 AC 112 ms
41,080 KB
testcase_07 AC 113 ms
41,040 KB
testcase_08 AC 99 ms
40,024 KB
testcase_09 AC 108 ms
41,144 KB
testcase_10 AC 109 ms
40,840 KB
testcase_11 AC 120 ms
40,932 KB
testcase_12 AC 108 ms
41,140 KB
testcase_13 AC 101 ms
40,312 KB
testcase_14 AC 120 ms
40,976 KB
testcase_15 AC 117 ms
40,904 KB
testcase_16 AC 100 ms
40,072 KB
testcase_17 AC 91 ms
39,668 KB
testcase_18 AC 111 ms
41,136 KB
testcase_19 AC 113 ms
41,236 KB
testcase_20 AC 111 ms
41,100 KB
testcase_21 AC 110 ms
41,080 KB
testcase_22 AC 110 ms
41,020 KB
testcase_23 AC 108 ms
40,812 KB
testcase_24 AC 119 ms
40,912 KB
testcase_25 AC 106 ms
39,968 KB
testcase_26 AC 112 ms
40,936 KB
testcase_27 AC 100 ms
39,936 KB
testcase_28 AC 92 ms
39,552 KB
testcase_29 AC 103 ms
40,312 KB
testcase_30 AC 118 ms
41,004 KB
testcase_31 AC 105 ms
40,748 KB
testcase_32 AC 102 ms
39,936 KB
testcase_33 AC 113 ms
40,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) throws Exception {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		char[] cs=sc.next().toCharArray();
		int u=0,v=0;
		int su=1,sv=1;
		int p=0;
		if(cs[p]=='-') {
			++p;
			su*=-1;
		}else if(cs[p]=='+') {
			++p;
		}
		
		while((int)(cs[p]-'0')>=0&&9>=(int)(cs[p]-'0')) {
			u=10*u+(int)(cs[p]-'0');
			++p;
		}
		
		if(cs[p]=='+') {
			sv*=-1;
			++p;
		}else if(cs[p]=='-'){
			++p;
		}
		if(cs[p]=='-') {
			++p;
			sv*=-1;
		}else if(cs[p]=='+'){
			++p;
		}
		
		while(p<cs.length&&cs[p]-'0'>=0&&9>=cs[p]-'0') {
			v=10*v+(int)(cs[p]-'0');
			++p;
		}
		System.out.println(su*u+sv*v);
		
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
	
}
0