結果

問題 No.722 100×100=1000
ユーザー DeAKetsuDeAKetsu
提出日時 2019-06-03 12:37:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 54,132 KB
最終ジャッジ日時 2024-06-09 11:08:17
合計ジャッジ時間 7,481 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,828 KB
testcase_01 AC 131 ms
53,836 KB
testcase_02 AC 135 ms
54,124 KB
testcase_03 AC 133 ms
53,872 KB
testcase_04 AC 137 ms
53,876 KB
testcase_05 AC 137 ms
54,032 KB
testcase_06 AC 133 ms
53,912 KB
testcase_07 AC 133 ms
53,912 KB
testcase_08 AC 124 ms
53,888 KB
testcase_09 AC 137 ms
53,784 KB
testcase_10 AC 132 ms
53,980 KB
testcase_11 AC 127 ms
54,056 KB
testcase_12 AC 133 ms
53,812 KB
testcase_13 AC 125 ms
54,132 KB
testcase_14 AC 133 ms
54,120 KB
testcase_15 AC 138 ms
53,972 KB
testcase_16 AC 132 ms
53,812 KB
testcase_17 AC 128 ms
54,024 KB
testcase_18 AC 122 ms
53,812 KB
testcase_19 AC 111 ms
52,968 KB
testcase_20 AC 132 ms
53,784 KB
testcase_21 AC 128 ms
53,880 KB
testcase_22 AC 132 ms
53,904 KB
testcase_23 AC 133 ms
54,080 KB
testcase_24 AC 132 ms
53,932 KB
testcase_25 AC 135 ms
53,920 KB
testcase_26 AC 135 ms
53,776 KB
testcase_27 AC 127 ms
53,900 KB
testcase_28 AC 132 ms
53,936 KB
testcase_29 AC 127 ms
53,700 KB
testcase_30 AC 131 ms
54,128 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