結果

問題 No.1339 循環小数
ユーザー どららどらら
提出日時 2021-01-15 23:19:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,930 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 187,092 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-05-05 01:11:52
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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 get_period(int n) 
{ 
  map<int, int> mymap; 
  map<int, int>::iterator it; 
  
  int rem = 1, i = 1; 
  
  while (true){ 
    rem = (10*rem) % n; 

    it = mymap.find(rem); 
    if (it != mymap.end()) 
      return (i - it->second); 

    mymap[rem] = i; 
    i++; 
  } 
  
  return -1; 
}

map<ll,ll> factorize(ll x){
  map<ll,ll> ret;
  ll d, q;
  while(x>=4 && x%2==0){ret[2]++; x/=2;}
  d = 3; q = x/d;
  while(q>=d){
    if(x%d==0){ ret[d]++; x=q; }else{ d+=2; }
    q=x/d;
  }
  ret[x]++;
  return ret;
}

vector<ll> divisor(ll n){
  vector<ll> ret;
  for(ll i=1; i*i<=n; i++){
    if(n%i==0){
      ret.push_back(i);
      if(i!=n/i) ret.push_back(n/i);
    }
  }
  sort(ret.begin(), ret.end());
  return ret;
}


ll mod_pow(ll x, ll n, ll mod){
  ll res = 1;
  while(n>0){
    if(n&1) res = res*x%mod;
    x = x*x%mod;
    n >>= 1;
  }
  return res;
}


ll calc_for_prime(ll p){
  vector<ll> div = divisor(p-1);
  rep(i,div.size()){
    ll m = div[i];
    ll x = mod_pow(10, m, p);
    if(x == 1) return m;
  }
  return 1;
}

ll gcd(ll a, ll b){return (b==0?a:gcd(b,a%b));}
ll lcm(ll a, ll b){return a/gcd(a,b)*b;}

void solve(){
  ll N;
  cin >> N;

  map<ll,ll> res = factorize(N);

  ll ret = 1;
  FOR(it,res){
    ll x = it->first;

    if(x == 3 || x == 487){
      ll y = 1;
      rep(i,it->second){
        y *= x;
      }
      
      ret = lcm(ret, get_period(y));
    }else{
      ll y = 1;
      rep(i,it->second-1){
        y *= x;
      }
      ret = lcm(ret, calc_for_prime(x) * y);
    }
  }

  cout << ret << endl;

}

int main(){
  int t;
  cin >> t;

  rep(i,t){
    solve();
  }
  
  return 0;
}
0