結果

問題 No.222 引き算と足し算
ユーザー 37zigen37zigen
提出日時 2020-02-19 11:29:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 886 bytes
コンパイル時間 2,459 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 56,056 KB
最終ジャッジ日時 2024-10-07 23:20:49
合計ジャッジ時間 7,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,300 KB
testcase_01 AC 125 ms
54,260 KB
testcase_02 AC 126 ms
54,020 KB
testcase_03 AC 125 ms
53,880 KB
testcase_04 AC 127 ms
54,132 KB
testcase_05 AC 130 ms
53,876 KB
testcase_06 AC 127 ms
54,100 KB
testcase_07 AC 126 ms
54,176 KB
testcase_08 AC 127 ms
54,104 KB
testcase_09 AC 125 ms
54,392 KB
testcase_10 AC 126 ms
53,960 KB
testcase_11 AC 125 ms
54,012 KB
testcase_12 AC 125 ms
53,992 KB
testcase_13 AC 125 ms
54,260 KB
testcase_14 AC 129 ms
54,280 KB
testcase_15 AC 126 ms
53,948 KB
testcase_16 AC 124 ms
53,932 KB
testcase_17 AC 126 ms
54,240 KB
testcase_18 AC 126 ms
53,924 KB
testcase_19 AC 131 ms
53,948 KB
testcase_20 AC 127 ms
54,188 KB
testcase_21 AC 126 ms
54,040 KB
testcase_22 AC 127 ms
54,284 KB
testcase_23 AC 125 ms
54,196 KB
testcase_24 AC 126 ms
54,168 KB
testcase_25 AC 126 ms
54,276 KB
testcase_26 AC 127 ms
53,992 KB
testcase_27 AC 127 ms
54,108 KB
testcase_28 AC 124 ms
56,056 KB
testcase_29 AC 125 ms
54,048 KB
testcase_30 AC 123 ms
53,964 KB
testcase_31 AC 126 ms
53,868 KB
testcase_32 AC 124 ms
54,232 KB
testcase_33 AC 125 ms
54,284 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;
		}else {
			throw new AssertionError();
		}
		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