結果

問題 No.722 100×100=1000
ユーザー htensaihtensai
提出日時 2019-11-12 00:32:15
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 74,148 KB
実行使用メモリ 41,524 KB
最終ジャッジ日時 2024-12-29 19:49:07
合計ジャッジ時間 8,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
41,060 KB
testcase_01 AC 155 ms
41,172 KB
testcase_02 AC 148 ms
41,356 KB
testcase_03 AC 144 ms
41,060 KB
testcase_04 AC 147 ms
41,200 KB
testcase_05 AC 148 ms
41,140 KB
testcase_06 AC 138 ms
40,496 KB
testcase_07 AC 148 ms
41,332 KB
testcase_08 AC 153 ms
41,428 KB
testcase_09 AC 147 ms
41,524 KB
testcase_10 AC 148 ms
41,500 KB
testcase_11 AC 150 ms
41,372 KB
testcase_12 AC 148 ms
41,444 KB
testcase_13 AC 130 ms
39,860 KB
testcase_14 AC 148 ms
41,524 KB
testcase_15 AC 148 ms
41,204 KB
testcase_16 AC 148 ms
41,208 KB
testcase_17 AC 135 ms
40,052 KB
testcase_18 AC 149 ms
41,324 KB
testcase_19 AC 152 ms
41,100 KB
testcase_20 AC 135 ms
40,076 KB
testcase_21 AC 150 ms
41,324 KB
testcase_22 AC 148 ms
41,292 KB
testcase_23 AC 150 ms
41,332 KB
testcase_24 AC 147 ms
41,332 KB
testcase_25 AC 150 ms
41,328 KB
testcase_26 AC 147 ms
41,168 KB
testcase_27 AC 145 ms
41,324 KB
testcase_28 AC 150 ms
41,484 KB
testcase_29 AC 147 ms
41,084 KB
testcase_30 AC 149 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextInt();
		long b = sc.nextInt();
		if (isBlind(a) && isBlind(b)) {
		    System.out.println(a /10 * b);
		} else if (a * b < -99999999 || a * b > 99999999) {
		    System.out.println("E");
		} else {
		    System.out.println(a * b);
		}
	}
	
	static boolean isBlind(long x) {
	    if (x > -100 && x < 100) {
	        return false;
	    }
	    while (Math.abs(x) > 9) {
	        if (x % 10 != 0) {
	            return false;
	        }
	        x /= 10;
	    }
	    return true;
	}
}
0