結果

問題 No.1339 循環小数
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-01-15 21:58:03
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 387 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 580,592 KB
最終ジャッジ日時 2024-05-04 23:42:32
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,728 KB
testcase_01 AC 46 ms
59,776 KB
testcase_02 AC 44 ms
60,032 KB
testcase_03 AC 43 ms
59,264 KB
testcase_04 AC 41 ms
60,032 KB
testcase_05 AC 41 ms
60,032 KB
testcase_06 AC 41 ms
60,544 KB
testcase_07 AC 41 ms
59,648 KB
testcase_08 AC 41 ms
60,288 KB
testcase_09 AC 41 ms
60,800 KB
testcase_10 AC 41 ms
60,032 KB
testcase_11 AC 152 ms
114,988 KB
testcase_12 AC 153 ms
106,752 KB
testcase_13 AC 131 ms
112,512 KB
testcase_14 AC 140 ms
108,388 KB
testcase_15 AC 132 ms
99,924 KB
testcase_16 AC 119 ms
98,304 KB
testcase_17 AC 157 ms
116,944 KB
testcase_18 AC 106 ms
92,032 KB
testcase_19 AC 110 ms
93,952 KB
testcase_20 AC 103 ms
93,440 KB
testcase_21 MLE -
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
        now *= 10
        #print(now)
        c += 1
    print(ans)
0