結果

問題 No.722 100×100=1000
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-09-21 00:13:01
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,006 bytes
コンパイル時間 2,401 ms
コンパイル使用メモリ 77,228 KB
実行使用メモリ 50,444 KB
最終ジャッジ日時 2024-10-12 11:10:27
合計ジャッジ時間 7,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
50,436 KB
testcase_01 AC 132 ms
50,128 KB
testcase_02 AC 131 ms
50,168 KB
testcase_03 AC 113 ms
48,532 KB
testcase_04 AC 132 ms
50,368 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 132 ms
49,944 KB
testcase_08 AC 133 ms
50,144 KB
testcase_09 AC 137 ms
50,364 KB
testcase_10 AC 132 ms
50,124 KB
testcase_11 AC 131 ms
50,256 KB
testcase_12 AC 132 ms
50,048 KB
testcase_13 AC 131 ms
49,992 KB
testcase_14 AC 132 ms
50,128 KB
testcase_15 AC 134 ms
49,996 KB
testcase_16 AC 132 ms
50,016 KB
testcase_17 AC 132 ms
50,128 KB
testcase_18 AC 122 ms
49,044 KB
testcase_19 AC 130 ms
49,780 KB
testcase_20 AC 134 ms
49,944 KB
testcase_21 WA -
testcase_22 AC 131 ms
50,364 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 130 ms
50,248 KB
testcase_26 AC 127 ms
50,128 KB
testcase_27 AC 133 ms
50,192 KB
testcase_28 AC 128 ms
50,140 KB
testcase_29 AC 128 ms
50,128 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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 alen = String.valueOf(A).length();
        int blen = String.valueOf(B).length();
        if(A < 0) alen--;
        if(B < 0) blen--;

        long ta = pow(alen);
        long tb = pow(blen);

        long ans = 0;
        if((A % ta != 0 && (A / ta >= 1 || A / ta <= 9) && ta >= 2) ||
           (B % tb != 0 && (B / tb >= 1 || B / tb <= 9) && tb >= 2)) { // 電卓
            ans = A * B;
            if(ans > 99999999 || ans < -99999999)
                System.out.println("E");
            else
                System.out.println(ans);
        } else { // 暗算
            ans = A * B;
            System.out.println(ans / 10);
        }

    }

    public static int pow(int times) {
        int x = 1;
        for(int i=1; i<times; i++) {
            x *= 10;
        }
        return x;
    }
}
0