結果

問題 No.722 100×100=1000
ユーザー どらら
提出日時 2018-08-04 11:33:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 715 bytes
コンパイル時間 1,602 ms
コンパイル使用メモリ 167,536 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-10-12 10:46:58
合計ジャッジ時間 5,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 7 WA * 2 TLE * 1 -- * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;


int main(){
  ll A, B;
  cin >> A >> B;

  if(A % 100 == 0 && B % 100 == 0){
    int n = 0, m = 0;
    while(A % 10 == 0){ n++; A/=10; }
    while(B % 10 == 0){ m++; B/=10; }

    cout << A*B;
    rep(i,n+m-1) cout << "0";
    cout << endl;
  }else{
    ll ret = A * B;
    if(ret <= -100000000LL || 100000000LL <= ret){
      cout << "E" << endl;
    }else{
      cout << ret << endl;
    }
  }
  
  return 0;
}
0