結果

問題 No.1339 循環小数
ユーザー maguroflymagurofly
提出日時 2021-01-15 22:08:35
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 252 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 105,460 KB
最終ジャッジ日時 2024-05-04 23:59:57
合計ジャッジ時間 5,236 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
18,176 KB
testcase_01 AC 123 ms
12,672 KB
testcase_02 AC 116 ms
13,312 KB
testcase_03 AC 114 ms
12,928 KB
testcase_04 AC 114 ms
12,800 KB
testcase_05 AC 118 ms
13,056 KB
testcase_06 AC 122 ms
13,184 KB
testcase_07 AC 115 ms
13,056 KB
testcase_08 AC 119 ms
12,672 KB
testcase_09 AC 127 ms
13,056 KB
testcase_10 AC 118 ms
12,672 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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