結果

問題 No.1113 二つの整数 / Two Integers
ユーザー magmag
提出日時 2020-07-17 23:17:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 896 bytes
コンパイル時間 1,690 ms
コンパイル使用メモリ 173,956 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-07 11:02:25
合計ジャッジ時間 3,314 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 RE -
testcase_11 RE -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 RE -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
using ll=long long;
#define rep2(i, a, n) for(int i = (a); i < (n); i++)
#define rep(i, n) rep2(i,0,n)

template<typename S,typename T,typename U>void flagfunc1(S flag,T A,U B){flag?cout<<A<<'\n':cout<<B<<'\n';}

vector<ll> divisor(int n){
  vector<ll> res;
  for(int i=1;i*i<=n;i++){
    if(n%i==0){
      res.push_back(i);
      if(i!=n/i) res.push_back(n/i);
    }
  }
  return res;
}

int main(){
  cin.tie(nullptr);ios_base::sync_with_stdio(false);

  ll a,b;cin>>a>>b;
  vector<ll> c,d;
  c=divisor(a);
  d=divisor(b);

  sort(c.begin(),c.end());
  sort(d.begin(),d.end());

  /*
  rep(i,c.size())cout<<c[i]<<" ";
  cout<<endl;
  rep(i,d.size())cout<<d[i]<<" ";
  cout<<endl;
   */

  ll cnt=0,e=0,f=0;
  for(int e=0;e<c.size();e++){
    if(c[e]==d[f]){
      cnt++;
      f++;
    }
  }

  //cout<<cnt<<endl;
  flagfunc1(cnt%2,"Odd","Even");
}
0