結果

問題 No.722 100×100=1000
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-21 00:29:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 3,280 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-12-29 19:38:26
合計ジャッジ時間 9,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
41,008 KB
testcase_01 AC 148 ms
41,308 KB
testcase_02 AC 147 ms
41,052 KB
testcase_03 AC 145 ms
41,328 KB
testcase_04 AC 149 ms
41,428 KB
testcase_05 AC 148 ms
41,328 KB
testcase_06 AC 136 ms
40,056 KB
testcase_07 AC 146 ms
41,152 KB
testcase_08 AC 133 ms
40,244 KB
testcase_09 AC 150 ms
41,072 KB
testcase_10 AC 149 ms
41,044 KB
testcase_11 AC 146 ms
41,228 KB
testcase_12 AC 149 ms
41,292 KB
testcase_13 AC 144 ms
41,248 KB
testcase_14 AC 148 ms
41,180 KB
testcase_15 AC 147 ms
41,228 KB
testcase_16 AC 145 ms
41,188 KB
testcase_17 AC 148 ms
41,272 KB
testcase_18 AC 153 ms
41,156 KB
testcase_19 AC 144 ms
41,276 KB
testcase_20 AC 146 ms
41,196 KB
testcase_21 AC 132 ms
40,148 KB
testcase_22 AC 149 ms
41,252 KB
testcase_23 AC 132 ms
39,984 KB
testcase_24 AC 146 ms
41,468 KB
testcase_25 AC 147 ms
41,072 KB
testcase_26 AC 144 ms
41,444 KB
testcase_27 AC 147 ms
41,116 KB
testcase_28 AC 148 ms
41,168 KB
testcase_29 AC 132 ms
40,112 KB
testcase_30 AC 150 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        long A = in.nextLong();
        long B = in.nextLong();

        int n = 0;
        int m = 0;

        long al = Math.abs(A);
        long bl = Math.abs(B);

        for(int i=0; al>=10; i++) {
            al /= 10;
            n++;
        }
        for(int i=0; bl>=10; i++) {
            bl /= 10;
            m++;
        }

        long ans = 0;
        if((n >= 2 && A % Math.pow(10,n) == 0) &&
           (m >= 2 && B % Math.pow(10,m) == 0)) {
            ans = A * B / 10;
        } else if(Math.abs(A*B) <= 99999999) {
            ans = A * B;
        } else {
            System.out.println("E");
            return;
        }

        System.out.println(ans);
    }
}
0