結果

問題 No.1339 循環小数
ユーザー maguroflymagurofly
提出日時 2021-01-15 23:00:54
言語 Ruby
(3.3.0)
結果
MLE  
実行時間 -
コード長 859 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 626,048 KB
最終ジャッジ日時 2024-05-05 00:59:05
合計ジャッジ時間 5,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 75 ms
12,032 KB
testcase_06 AC 75 ms
12,160 KB
testcase_07 AC 75 ms
12,288 KB
testcase_08 AC 73 ms
12,160 KB
testcase_09 AC 75 ms
12,160 KB
testcase_10 AC 73 ms
12,288 KB
testcase_11 AC 119 ms
12,672 KB
testcase_12 AC 114 ms
12,672 KB
testcase_13 AC 112 ms
12,800 KB
testcase_14 AC 120 ms
12,800 KB
testcase_15 AC 121 ms
12,928 KB
testcase_16 AC 117 ms
12,544 KB
testcase_17 AC 130 ms
12,672 KB
testcase_18 AC 110 ms
12,672 KB
testcase_19 AC 108 ms
12,672 KB
testcase_20 AC 102 ms
12,928 KB
testcase_21 MLE -
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 #

class SPFPrime
	def initialize(max)
		@spf = (0..max).to_a
		sqmax = Math.sqrt(max).ceil
		4.step(sqmax, 2) { |i| @spf[i] = 2 }
		3.step(sqmax, 2) { |i| (i*i).step(max, i) { |j| @spf[j] = i if @spf[j] == j } if @spf[i] == i }
	end
	def prime?(n); @spf[n] == n; end
	def each; (2..max).each { |i| yield i if @spf[i] == i }; end
	def factorize(n); fs = []; while n > 1; f = @spf[n]; fs << f; n /= f; end; fs; end
end

T = gets.to_i
testcases = Array.new(T) {
    n = gets.to_i
    n /= 2 while n % 2 == 0
    n /= 5 while n % 5 == 0
    n
}
prime = SPFPrime.new testcases.max
testcases.each do |n|
    len = 1
    prime.factorize(n).tally.each do |(p, e)|
        m = p ** e
        l = 1
        repnov = 9 % m
        until repnov == 0
            repnov = (repnov * 10 + 9) % m
            l += 1
        end
        len = len.lcm(l)
    end
    puts len
end
0