結果

問題 No.1339 循環小数
ユーザー ygd.ygd.
提出日時 2021-01-15 21:57:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-05-04 23:41:10
合計ジャッジ時間 5,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,600 KB
testcase_01 AC 45 ms
57,984 KB
testcase_02 AC 44 ms
58,496 KB
testcase_03 AC 45 ms
58,496 KB
testcase_04 AC 44 ms
58,496 KB
testcase_05 AC 44 ms
58,496 KB
testcase_06 AC 43 ms
58,368 KB
testcase_07 AC 43 ms
58,240 KB
testcase_08 AC 46 ms
58,368 KB
testcase_09 AC 47 ms
58,368 KB
testcase_10 AC 44 ms
58,240 KB
testcase_11 AC 73 ms
59,136 KB
testcase_12 AC 68 ms
58,624 KB
testcase_13 AC 61 ms
58,240 KB
testcase_14 AC 65 ms
59,264 KB
testcase_15 AC 65 ms
59,136 KB
testcase_16 AC 61 ms
59,136 KB
testcase_17 AC 66 ms
58,624 KB
testcase_18 AC 59 ms
59,136 KB
testcase_19 AC 59 ms
59,392 KB
testcase_20 AC 57 ms
59,264 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 #

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