結果

問題 No.722 100×100=1000
ユーザー ribenngeribennge
提出日時 2018-08-23 16:53:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 2,704 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 56,004 KB
最終ジャッジ日時 2024-10-12 11:04:02
合計ジャッジ時間 7,618 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,944 KB
testcase_01 AC 129 ms
54,008 KB
testcase_02 AC 129 ms
54,232 KB
testcase_03 AC 131 ms
54,268 KB
testcase_04 AC 132 ms
54,172 KB
testcase_05 AC 129 ms
54,016 KB
testcase_06 AC 129 ms
56,004 KB
testcase_07 WA -
testcase_08 AC 130 ms
54,312 KB
testcase_09 AC 131 ms
54,168 KB
testcase_10 AC 131 ms
53,868 KB
testcase_11 AC 131 ms
54,168 KB
testcase_12 AC 130 ms
54,076 KB
testcase_13 AC 130 ms
54,076 KB
testcase_14 AC 129 ms
54,148 KB
testcase_15 AC 128 ms
54,132 KB
testcase_16 AC 130 ms
53,840 KB
testcase_17 AC 131 ms
54,148 KB
testcase_18 AC 131 ms
54,236 KB
testcase_19 AC 132 ms
54,244 KB
testcase_20 AC 131 ms
54,268 KB
testcase_21 AC 129 ms
53,948 KB
testcase_22 AC 130 ms
53,924 KB
testcase_23 AC 132 ms
54,148 KB
testcase_24 AC 132 ms
54,292 KB
testcase_25 AC 128 ms
54,076 KB
testcase_26 AC 131 ms
54,168 KB
testcase_27 AC 131 ms
53,996 KB
testcase_28 AC 130 ms
54,004 KB
testcase_29 AC 128 ms
53,992 KB
testcase_30 AC 132 ms
53,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class No_722{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		
		int n = 0;
		int m = 0;
		int al = Math.abs(a);
		int bl = Math.abs(b);
		
		for(int i= 0;al >= 10;i++){
		al /= 10;
		n++;
		}
		
		for(int i = 0;bl >= 10;i++){
		bl /= 10;
		m++;
		}
		
		if((n >= 2&&a % Math.pow(10,n) == 0)&&(m >= 2&&b % Math.pow(10,m) == 0)) {
			System.out.println((long)a * b / 10);
		}else if(a * b < -99999999 || a * b > 99999999) {
			System.out.println("E");
		}else {
			System.out.println(a * b);
		}
	}
}
0