結果

問題 No.722 100×100=1000
ユーザー kpinkcatkpinkcat
提出日時 2023-08-21 10:48:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 999 ms
コンパイル使用メモリ 99,192 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-08 16:07:28
合計ジャッジ時間 2,221 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
using namespace std;


int main()
{
    long long a, b;
    cin >> a >> b;
    string sa = to_string(a), sb = to_string(b);
    if (a < 0) sa.erase(0, 1);
    if (b < 0) sb.erase(0, 1);
    if (!(abs(a)%(int)pow(10,sa.size() -1)) && !(abs(b)%(int)pow(10,sb.size() -1))) cout << a * b /10 << endl;
    else cout << ((abs(a*b) < 100000000) ? to_string(a*b) : "E") << endl;
}
0