結果

問題 No.1339 循環小数
ユーザー tt
提出日時 2021-02-06 15:36:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 230 bytes
コンパイル時間 457 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 17,692 KB
最終ジャッジ日時 2024-07-03 00:51:34
合計ジャッジ時間 15,452 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,692 KB
testcase_01 AC 40 ms
10,624 KB
testcase_02 AC 39 ms
10,624 KB
testcase_03 AC 36 ms
10,880 KB
testcase_04 AC 38 ms
10,752 KB
testcase_05 AC 38 ms
10,624 KB
testcase_06 AC 42 ms
10,624 KB
testcase_07 AC 37 ms
10,624 KB
testcase_08 AC 41 ms
10,624 KB
testcase_09 AC 44 ms
10,752 KB
testcase_10 AC 39 ms
10,624 KB
testcase_11 AC 1,209 ms
10,752 KB
testcase_12 AC 1,369 ms
10,880 KB
testcase_13 AC 955 ms
10,624 KB
testcase_14 AC 1,126 ms
10,624 KB
testcase_15 AC 1,116 ms
10,752 KB
testcase_16 AC 949 ms
10,624 KB
testcase_17 AC 1,435 ms
10,752 KB
testcase_18 AC 825 ms
10,752 KB
testcase_19 AC 828 ms
10,752 KB
testcase_20 AC 734 ms
10,624 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 #

T = int(input())
for i in range(T):
  N = int(input())
  while N%2 == 0:
      N = N//2
  while N%5 == 0:
      N = N//5
  d = 1
  if pow(10, d, N) != 0:
    while pow(10, d, N) != 1:
      d += 1
    print(d)
  else:
    print(1)
0