結果
問題 | No.722 100×100=1000 |
ユーザー | C6218expressswallow |
提出日時 | 2018-08-03 22:50:03 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 482 ms |
コンパイル使用メモリ | 63,976 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 10:40:32 |
合計ジャッジ時間 | 1,390 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 1 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 1 ms
6,820 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 1 ms
6,816 KB |
ソースコード
#include <iostream> #include<algorithm> #include <vector> #include<string> #include<cmath> #include<cstdio> using namespace std; typedef long long ll; typedef unsigned long long ull; #define max(x,y) (((x)>(y)) ? x:y) #define min(x,y) (((x)<(y)) ? x:y) #define FOR(a,b,c) for(b=(c);b<(a);b++) #define ender {return 0;} #define tosasuretu(a) (a*(a+1)/2) inline long kaizyo(long); int main() { ll a, b, ca, cb, ans; bool ay = false; bool by = false; cin >> a >> b; while (!(a%10==0)) { a /= 10; ca++; } if (a < 10) { ay = true; } while (!(b % 10 == 0)) { b /= 10; cb++; } if (a < 10) { ay = true; } if (ay && by) { ans = a * b; for (ll i = 0; i < (ca + cb - 1); i++) { ans *= 10; } } else { if (((a*b) <= 99999999) && ((a*b) >= -99999999)) { ans = a * b; } else { ans = -100000000; } } if (ans == -100000000) { cout << "E"; } else { cout << ans; } return 0; } inline long kaizyo(long x) { long ans = 1; for (int z = 0; z < x; z++) { ans *= (x - z); } return ans; }