結果

問題 No.722 100×100=1000
ユーザー lunnearlunnear
提出日時 2018-11-13 13:53:25
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,012 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 54,236 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 15:35:16
合計ジャッジ時間 1,139 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 WA -
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

#define CALC_MAX    99999999
#define CALC_MIN    -99999999

struct Rise
{
    int value;
    int mul;
};

//  A(10^n)形式を求める
Rise Rise10(int val)
{
    Rise ret;
    ret.value = val;
    ret.mul = 0;
    
    if(val == 0)
        return ret;
    
    while(1)
    {
        if((ret.value % 10) != 0)
            return ret;

        ret.value /= 10;
        ret.mul++;
    }
}

int main()
{
    int a, b;
    Rise ar, br;
    std::cin >> a >> b;
    
    ar = Rise10(a);
    br = Rise10(b);
    
    if((ar.mul > 0) && (br.mul > 0))
    {
        int loop = ar.mul + br.mul - 2;
        std::cout << (ar.value * br.value);
        
        for(int i = 0; i < loop; i++)
        {
            std::cout << "0";
        }
        
        return 0;
    }
    else
    {
        long long ans = a * b;
        if((ans > CALC_MAX) || (ans < CALC_MIN))
        {
            std::cout << "E";
            return 0;
        }
        
        std::cout << ans;
        return 0;
    }
}
0