結果

問題 No.722 100×100=1000
ユーザー C6218expressswallowC6218expressswallow
提出日時 2018-08-03 22:48:49
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,033 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 63,396 KB
実行使用メモリ 68,772 KB
最終ジャッジ日時 2024-04-20 15:00:38
合計ジャッジ時間 4,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#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;
}



0