結果

問題 No.1339 循環小数
ユーザー maguroflymagurofly
提出日時 2021-01-15 22:08:35
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 252 bytes
コンパイル時間 37 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 114,396 KB
最終ジャッジ日時 2024-11-26 15:04:29
合計ジャッジ時間 80,830 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
19,492 KB
testcase_01 AC 111 ms
112,616 KB
testcase_02 AC 111 ms
19,876 KB
testcase_03 AC 103 ms
113,120 KB
testcase_04 AC 107 ms
19,744 KB
testcase_05 AC 107 ms
12,928 KB
testcase_06 AC 118 ms
20,256 KB
testcase_07 AC 109 ms
82,716 KB
testcase_08 AC 113 ms
19,744 KB
testcase_09 AC 117 ms
82,124 KB
testcase_10 AC 113 ms
19,620 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
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 -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require "prime"
T = gets.to_i
T.times do
    N = gets.to_i
    n = N
    n /= 2 while n % 2 == 0
    n /= 5 while n % 5 == 0
    len = 1
    repnov = 9
    until repnov % n == 0
        repnov = repnov * 10 + 9
        len += 1
    end
    puts len
end
0