結果

問題 No.722 100×100=1000
ユーザー hiro_ei1812hiro_ei1812
提出日時 2019-07-14 15:57:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 1,237 ms
コンパイル使用メモリ 53,208 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 16:22:36
合計ジャッジ時間 1,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
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 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 2 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>
using namespace std;

int main(void){
	int a,b;
	int ans;

	cin>>a>>b;

	if(a%10==0 && b%10==0){
		cout<<a*b/10<<"\n";
		return 0;
	}

	ans=a*b;

	if(-99999999<=ans && ans<=99999999){
		cout<<ans<<"\n";
	}
	else{
		cout<<"E\n";
	}

	return 0;
}
0