結果

問題 No.722 100×100=1000
ユーザー htensaihtensai
提出日時 2019-11-12 00:32:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 640 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 74,232 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-06-09 11:09:29
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
41,208 KB
testcase_01 AC 105 ms
41,488 KB
testcase_02 AC 109 ms
40,904 KB
testcase_03 AC 118 ms
40,908 KB
testcase_04 AC 115 ms
41,232 KB
testcase_05 AC 119 ms
41,088 KB
testcase_06 AC 116 ms
41,424 KB
testcase_07 AC 117 ms
41,224 KB
testcase_08 AC 113 ms
41,360 KB
testcase_09 AC 96 ms
41,180 KB
testcase_10 AC 113 ms
41,028 KB
testcase_11 AC 108 ms
41,016 KB
testcase_12 AC 112 ms
40,088 KB
testcase_13 AC 115 ms
40,892 KB
testcase_14 AC 108 ms
41,080 KB
testcase_15 AC 102 ms
41,240 KB
testcase_16 AC 118 ms
41,020 KB
testcase_17 AC 103 ms
41,444 KB
testcase_18 AC 102 ms
41,232 KB
testcase_19 AC 115 ms
41,272 KB
testcase_20 AC 115 ms
41,452 KB
testcase_21 AC 111 ms
40,208 KB
testcase_22 AC 109 ms
41,012 KB
testcase_23 AC 112 ms
41,440 KB
testcase_24 AC 117 ms
41,272 KB
testcase_25 AC 113 ms
41,380 KB
testcase_26 AC 114 ms
41,236 KB
testcase_27 AC 121 ms
41,384 KB
testcase_28 AC 108 ms
40,912 KB
testcase_29 AC 114 ms
41,188 KB
testcase_30 AC 113 ms
41,224 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