結果

問題 No.722 100×100=1000
ユーザー Mcpu3Mcpu3
提出日時 2018-08-04 11:34:04
言語 Java
(openjdk 23)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 588 bytes
コンパイル時間 2,337 ms
コンパイル使用メモリ 75,524 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-12-29 19:25:54
合計ジャッジ時間 8,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
40,952 KB
testcase_01 AC 146 ms
41,024 KB
testcase_02 AC 143 ms
40,836 KB
testcase_03 AC 129 ms
40,764 KB
testcase_04 AC 144 ms
41,000 KB
testcase_05 AC 135 ms
41,264 KB
testcase_06 AC 136 ms
41,064 KB
testcase_07 AC 138 ms
40,996 KB
testcase_08 AC 138 ms
40,864 KB
testcase_09 AC 142 ms
41,444 KB
testcase_10 AC 138 ms
41,180 KB
testcase_11 AC 150 ms
41,668 KB
testcase_12 AC 130 ms
40,936 KB
testcase_13 AC 123 ms
40,008 KB
testcase_14 AC 128 ms
39,876 KB
testcase_15 AC 134 ms
40,536 KB
testcase_16 AC 146 ms
41,012 KB
testcase_17 AC 151 ms
41,476 KB
testcase_18 AC 150 ms
41,216 KB
testcase_19 AC 145 ms
40,860 KB
testcase_20 AC 142 ms
40,804 KB
testcase_21 AC 137 ms
40,956 KB
testcase_22 AC 140 ms
41,472 KB
testcase_23 AC 135 ms
41,068 KB
testcase_24 AC 134 ms
41,336 KB
testcase_25 AC 135 ms
41,212 KB
testcase_26 AC 147 ms
40,996 KB
testcase_27 AC 149 ms
40,996 KB
testcase_28 AC 152 ms
41,352 KB
testcase_29 AC 136 ms
40,072 KB
testcase_30 AC 145 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		long a=stdIn.nextLong(),b=stdIn.nextLong(),c,d,f=0;
		if(a>0) c=a;
		else c=-a;
		do {
			if(c%10!=0) f++;
			c/=10;
		}while(c>9);
		if(b>0) d=b;
		else d=-b;
		do {
			if(d%10!=0) f++;
			d/=10;
		}while(d>9);
		if(a>0) c=a;
		else c=-a;
		if(b>0) d=b;
		else d=-b;
		if(100>c||100>d) f++;
		if(f>0) {
			if(a*b>=-99999999&&99999999>=a*b) System.out.print(a*b);
			else System.out.print("E");
		}
		else System.out.print(a*b/10);
	}
}
0