結果

問題 No.6 使いものにならないハッシュ
ユーザー horiesinitihoriesiniti
提出日時 2018-03-31 17:52:00
言語 Ruby
(3.3.0)
結果
AC  
実行時間 201 ms / 5,000 ms
コード長 450 bytes
コンパイル時間 57 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-09-16 16:43:55
合計ジャッジ時間 6,182 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,160 KB
testcase_01 AC 97 ms
12,160 KB
testcase_02 AC 201 ms
14,976 KB
testcase_03 AC 110 ms
12,800 KB
testcase_04 AC 120 ms
12,928 KB
testcase_05 AC 132 ms
13,696 KB
testcase_06 AC 163 ms
14,208 KB
testcase_07 AC 148 ms
13,440 KB
testcase_08 AC 160 ms
13,696 KB
testcase_09 AC 136 ms
13,184 KB
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 112 ms
13,056 KB
testcase_12 AC 175 ms
14,976 KB
testcase_13 AC 131 ms
13,184 KB
testcase_14 AC 134 ms
13,184 KB
testcase_15 AC 164 ms
14,080 KB
testcase_16 AC 142 ms
13,696 KB
testcase_17 AC 172 ms
14,848 KB
testcase_18 AC 192 ms
14,976 KB
testcase_19 AC 182 ms
14,464 KB
testcase_20 AC 169 ms
14,336 KB
testcase_21 AC 102 ms
12,672 KB
testcase_22 AC 174 ms
13,824 KB
testcase_23 AC 168 ms
14,464 KB
testcase_24 AC 167 ms
14,208 KB
testcase_25 AC 149 ms
14,208 KB
testcase_26 AC 179 ms
14,848 KB
testcase_27 AC 159 ms
14,208 KB
testcase_28 AC 138 ms
13,696 KB
testcase_29 AC 184 ms
14,976 KB
testcase_30 AC 181 ms
14,976 KB
testcase_31 AC 183 ms
14,720 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

def f(n)
	re=0
	n.to_s.chars{|e|
		re+=e.to_i
	}
	return re
end

d=gets.to_i
u=gets.to_i
x=Prime.each(u).to_a
while x[0]<d
	x.shift
end

x=x.map{|e|
	e2=e
	while e2>9
		e2=f(e2)
	end
	[e,e2]
}
anslen=1
ans=x[0]
while x.empty? == false
	e=x.shift
	e0=e[0]
	e1=e[1]
	hs={}
	hs[e1]=0
	len=1
	x.each{|e2|
		if hs.key?(e2[1])==false
			len+=1
			hs[e2[1]]=0
		else
			break
		end
	}
	if anslen<=len
		ans=e0
		anslen=len
	end
end
puts ans
0