結果

問題 No.1339 循環小数
ユーザー ygd.ygd.
提出日時 2021-01-15 21:57:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 120,404 KB
最終ジャッジ日時 2024-11-26 14:31:28
合計ジャッジ時間 50,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,252 KB
testcase_01 AC 44 ms
118,900 KB
testcase_02 AC 43 ms
66,496 KB
testcase_03 AC 42 ms
65,680 KB
testcase_04 AC 42 ms
65,840 KB
testcase_05 AC 41 ms
119,264 KB
testcase_06 AC 41 ms
65,760 KB
testcase_07 AC 42 ms
118,940 KB
testcase_08 AC 42 ms
65,988 KB
testcase_09 AC 40 ms
118,436 KB
testcase_10 AC 41 ms
66,260 KB
testcase_11 AC 65 ms
120,404 KB
testcase_12 AC 63 ms
66,584 KB
testcase_13 AC 59 ms
120,036 KB
testcase_14 AC 61 ms
66,396 KB
testcase_15 AC 63 ms
118,572 KB
testcase_16 AC 60 ms
67,420 KB
testcase_17 AC 72 ms
117,028 KB
testcase_18 AC 63 ms
66,548 KB
testcase_19 AC 62 ms
119,052 KB
testcase_20 AC 61 ms
66,752 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

Case = int(input())
for _ in range(Case):
    N = int(input())
    while N%2 == 0:
        N //= 2
    while N%5 == 0:
        N //= 5
    ans = 1
    base = 9; keta = 1
    while base%N != 0:# and ans < 100:
        base %= N
        keta *= 10; keta %= N
        base += keta*9
        ans += 1
        #print(base,ans)
    print(ans)
0