結果

問題 No.1339 循環小数
ユーザー shu8Creamshu8Cream
提出日時 2021-01-16 09:36:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,231 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 199,400 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-11-27 09:23:09
合計ジャッジ時間 66,813 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/**
*    author:  shu8Cream
*    created: 15.01.2021 23:09:42
**/

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for (int i=0; i<(n); i++)
#define all(x) (x).begin(), (x).end()
using ll = long long;
using P = pair<int,int>;
using vi = vector<int>;
using vvi = vector<vi>;

int junkan(int n)
{
    int m=1; // 剰余を保持する変数(初期値1)
    int s=0; // 循環節の開始位置
    int t=0; // 循環節の終了位置
    int*list=(int*)calloc(n-1,sizeof(int)); // リストの初期化
    while (true)
    {
        // mが剰余リストにある場合はループ終了
        for(s=0;list[s];s++)
            if(m==list[s])
                goto END;
        // 剰余リストになかった場合は、終端に追加
        list[s]=m;
        // 次の剰余を計算
        m=(m*10)%n;
        // 割り切れる場合はループ終了
        if(m==0)goto END;
        t++;
    }
END:
    free(list); // リストの解放
    if(t-s==0) return 1;
    else return t-s; // 結果を出力
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int t;
    cin >> t;
    while(t--){
        int n; cin >>n;
        int a = junkan(n);
      	cout << a << endl;
    }
}
0