結果

問題 No.1339 循環小数
ユーザー どららどらら
提出日時 2021-01-15 23:16:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 754 bytes
コンパイル時間 1,633 ms
コンパイル使用メモリ 172,732 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-05-05 01:09:10
合計ジャッジ時間 8,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,624 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 5 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 326 ms
7,936 KB
testcase_12 AC 363 ms
7,424 KB
testcase_13 AC 243 ms
6,400 KB
testcase_14 AC 291 ms
8,064 KB
testcase_15 AC 291 ms
7,424 KB
testcase_16 AC 230 ms
7,296 KB
testcase_17 AC 419 ms
7,936 KB
testcase_18 AC 209 ms
6,400 KB
testcase_19 AC 212 ms
6,016 KB
testcase_20 AC 182 ms
5,632 KB
testcase_21 TLE -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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; 
}

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

  cout << get_period(N) << endl;

}


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

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


0