結果
| 問題 |
No.722 100×100=1000
|
| コンテスト | |
| ユーザー |
J31831276
|
| 提出日時 | 2018-12-25 03:46:02 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 321 bytes |
| コンパイル時間 | 439 ms |
| コンパイル使用メモリ | 56,856 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-10-12 11:18:32 |
| 合計ジャッジ時間 | 1,349 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 22 WA * 5 |
ソースコード
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <string>
#define ll long long
using namespace std;
int main(){
ll a,b;
cin>>a>>b;
if(a%100==0&&b%100==0){
cout<<a*b/10<<endl;
}else{
if(abs(a*b)>=99999999) cout<<"E"<<endl;
else cout<<a*b<<endl;
}
return 0;
}
J31831276