結果

問題 No.722 100×100=1000
ユーザー DeAKetsuDeAKetsu
提出日時 2019-06-03 12:37:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 4,624 ms
コンパイル使用メモリ 83,344 KB
実行使用メモリ 41,348 KB
最終ジャッジ日時 2024-12-29 19:46:00
合計ジャッジ時間 8,522 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,060 KB
testcase_01 AC 144 ms
41,180 KB
testcase_02 AC 149 ms
41,104 KB
testcase_03 AC 136 ms
40,592 KB
testcase_04 AC 146 ms
41,060 KB
testcase_05 AC 138 ms
40,920 KB
testcase_06 AC 142 ms
40,928 KB
testcase_07 AC 145 ms
41,112 KB
testcase_08 AC 129 ms
40,148 KB
testcase_09 AC 144 ms
41,152 KB
testcase_10 AC 150 ms
41,132 KB
testcase_11 AC 155 ms
41,044 KB
testcase_12 AC 137 ms
39,772 KB
testcase_13 AC 142 ms
41,300 KB
testcase_14 AC 144 ms
41,116 KB
testcase_15 AC 135 ms
39,788 KB
testcase_16 AC 139 ms
41,028 KB
testcase_17 AC 144 ms
41,048 KB
testcase_18 AC 138 ms
40,600 KB
testcase_19 AC 146 ms
41,072 KB
testcase_20 AC 137 ms
40,556 KB
testcase_21 AC 149 ms
41,272 KB
testcase_22 AC 151 ms
41,208 KB
testcase_23 AC 130 ms
39,872 KB
testcase_24 AC 129 ms
39,892 KB
testcase_25 AC 133 ms
40,072 KB
testcase_26 AC 152 ms
41,112 KB
testcase_27 AC 146 ms
41,008 KB
testcase_28 AC 153 ms
41,348 KB
testcase_29 AC 143 ms
40,984 KB
testcase_30 AC 126 ms
39,700 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