結果

問題 No.1339 循環小数
ユーザー 👑 NachiaNachia
提出日時 2021-01-15 21:44:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 619 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 207,352 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 23:14:54
合計ジャッジ時間 11,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 6 ms
5,376 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 5 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 5 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
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 AC 57 ms
5,376 KB
testcase_20 AC 53 ms
5,376 KB
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 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

ULL loop(){
  int N; scanf("%d",&N);
  while(N%2==0) N/=2;
  while(N%5==0) N/=5;
  if(N==1) return 1;
	unordered_map<ULL,ULL> X(30000);
  ULL p=1;
  rep(i,30000){ X[p]=i; p=p*10%N; if(p==1) return i+1; }
  p=1;
  ULL inv=0; rep(i,10) if((N/10*i+1)*10%N==1) inv=N/10*i+1;
  ULL q=1; rep(i,30000) q=q*inv%N;
  rep(i,40000){ p=p*q%N; if(X.count(p)) return (i+1)*30000+X[p]; }
  return ~0ull;
}

int main(){
  int T; scanf("%d",&T);
  while(T--) printf("%llu\n",loop());
  return 0;
}
0