結果

問題 No.1339 循環小数
ユーザー maninimanini
提出日時 2021-01-26 10:28:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 562 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 472,792 KB
最終ジャッジ日時 2024-06-23 09:29:18
合計ジャッジ時間 6,517 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,600 KB
testcase_01 AC 53 ms
60,416 KB
testcase_02 AC 51 ms
60,416 KB
testcase_03 AC 50 ms
60,032 KB
testcase_04 AC 51 ms
60,288 KB
testcase_05 AC 51 ms
60,672 KB
testcase_06 AC 53 ms
60,544 KB
testcase_07 AC 56 ms
60,544 KB
testcase_08 AC 52 ms
60,672 KB
testcase_09 AC 53 ms
60,800 KB
testcase_10 AC 52 ms
60,672 KB
testcase_11 AC 172 ms
83,584 KB
testcase_12 AC 175 ms
86,528 KB
testcase_13 AC 142 ms
80,256 KB
testcase_14 AC 171 ms
86,912 KB
testcase_15 AC 162 ms
85,120 KB
testcase_16 AC 148 ms
84,096 KB
testcase_17 AC 180 ms
87,296 KB
testcase_18 AC 135 ms
79,360 KB
testcase_19 AC 133 ms
80,384 KB
testcase_20 AC 127 ms
77,440 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 #

# coding:UTF-8
import sys

MOD = 10 ** 9 + 7
INF = float('inf')

T = int(input())    # 数字

res = []
for i in range(T):
    N = int(input())    # 数字

    mp = {}
    r = 0
    idx = 1
    am = 9
    while True:
        d, m = divmod(am, N)
        if d in mp:
            if m in mp[d]:
                r = idx - mp[d][m]
                break
            else:
                mp[d][m] = idx
        else:
            mp[d] = {}
            mp[d][m] = idx

        am = 10 * m + 9
        idx += 1

    res.append(r)

for i in range(T):
    print(res[i])
0