結果

問題 No.1339 循環小数
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-15 22:07:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 452 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 326,468 KB
最終ジャッジ日時 2024-05-04 23:58:15
合計ジャッジ時間 6,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
57,088 KB
testcase_01 AC 47 ms
60,288 KB
testcase_02 AC 45 ms
60,288 KB
testcase_03 AC 46 ms
59,904 KB
testcase_04 AC 47 ms
59,648 KB
testcase_05 AC 47 ms
60,416 KB
testcase_06 AC 47 ms
60,800 KB
testcase_07 AC 50 ms
59,904 KB
testcase_08 AC 47 ms
60,032 KB
testcase_09 AC 47 ms
60,544 KB
testcase_10 AC 47 ms
60,160 KB
testcase_11 AC 161 ms
115,280 KB
testcase_12 AC 166 ms
106,240 KB
testcase_13 AC 138 ms
112,924 KB
testcase_14 AC 152 ms
108,192 KB
testcase_15 AC 147 ms
100,788 KB
testcase_16 AC 136 ms
98,048 KB
testcase_17 AC 175 ms
117,060 KB
testcase_18 AC 121 ms
91,648 KB
testcase_19 AC 123 ms
94,208 KB
testcase_20 AC 117 ms
93,568 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 #

import sys
sys.setrecursionlimit(3*10**5)
t = int(input())
for _ in range(t):
    n = int(input())
    dic = {}
    now = 1
    while now < n:
        now *= 10
    c = 0
    ans = 1
    while now:
        x,now = divmod(now,n)
        if now in dic:
            ans = c-dic[now]
            break
        dic[now] = c
        if c >= 2*10**5:
            ans = n-1
            break
        now *= 10
        #print(now)
        c += 1
    print(ans)
0