結果

問題 No.1339 循環小数
ユーザー ぷらぷら
提出日時 2021-01-15 22:09:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,469 bytes
コンパイル時間 1,509 ms
コンパイル使用メモリ 166,360 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-05-05 00:02:16
合計ジャッジ時間 5,524 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,144 KB
testcase_01 AC 3 ms
6,812 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 38 ms
6,940 KB
testcase_12 AC 42 ms
6,944 KB
testcase_13 AC 30 ms
6,940 KB
testcase_14 AC 35 ms
6,940 KB
testcase_15 AC 35 ms
6,944 KB
testcase_16 AC 31 ms
6,944 KB
testcase_17 AC 41 ms
6,944 KB
testcase_18 AC 27 ms
6,940 KB
testcase_19 AC 27 ms
6,944 KB
testcase_20 AC 25 ms
6,940 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 int long long
typedef pair<int,int> P;
int INF = 3e18+7;
int mod = 1e9+7;
int dx[] = {1, 0,-1, 0, 1, 1,-1,-1};
int dy[] = {0, 1, 0,-1, 1,-1, 1,-1};
int junkan2(int n)
{
    int m = 1; // カメ。剰余を保持する変数(初期値1)
    int p = 1; // ウサギ。剰余を保持する変数(初期値1)
    int s = 0; // 循環節の開始位置
    int t = 0; // 循環節の終了位置
  
    if (n > 0)
    {
        // ウサギとカメが出合う地点を探す
        while (true)
        {
            m = (m * 10) % n;
            p = (p * 10) % n;
            p = (p * 10) % n;
            if (m == p)break;
        }
  
        // pが非ゼロ。割り切れない場合
        if (p != 0)
        {
            // ウサギをスタート地点に戻し、再びカメと出合うまでループを回す
            p = 1;
            s = 1;
            while (m != p)
            {
                s++;
                m = (m * 10) % n;
                p = (p * 10) % n;
            }
            // カメを止めて、ウサギだけ1ずつ進める
            p = (p * 10) % n;
            t = s;
            while (m != p)
            {
                t++;
                p = (p * 10) % n;
            }
        }
    }
    return t-s+1;
}

signed main() {
    int T;
    cin >> T;
    while (T--) {
        int N;
        cin >> N;
        cout << junkan2(N) << endl;
    }
}
0