結果

問題 No.434 占い
ユーザー cielciel
提出日時 2016-10-17 21:09:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 654 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 21,248 KB
最終ジャッジ日時 2024-06-07 21:23:47
合計ジャッジ時間 7,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
17,664 KB
testcase_01 AC 145 ms
17,536 KB
testcase_02 AC 144 ms
17,664 KB
testcase_03 AC 152 ms
17,664 KB
testcase_04 AC 147 ms
17,664 KB
testcase_05 AC 147 ms
17,792 KB
testcase_06 AC 150 ms
18,432 KB
testcase_07 AC 149 ms
17,792 KB
testcase_08 AC 146 ms
17,920 KB
testcase_09 AC 146 ms
18,048 KB
testcase_10 AC 151 ms
18,304 KB
testcase_11 AC 151 ms
18,944 KB
testcase_12 AC 201 ms
20,352 KB
testcase_13 AC 145 ms
18,304 KB
testcase_14 AC 146 ms
18,176 KB
testcase_15 AC 192 ms
19,712 KB
testcase_16 AC 196 ms
19,328 KB
testcase_17 AC 189 ms
19,712 KB
testcase_18 AC 200 ms
19,584 KB
testcase_19 AC 234 ms
21,248 KB
testcase_20 AC 654 ms
20,352 KB
testcase_21 AC 191 ms
19,200 KB
testcase_22 AC 193 ms
19,072 KB
testcase_23 AC 145 ms
17,920 KB
testcase_24 AC 187 ms
19,328 KB
testcase_25 AC 192 ms
19,072 KB
testcase_26 AC 171 ms
19,072 KB
testcase_27 AC 196 ms
19,712 KB
testcase_28 AC 200 ms
19,968 KB
testcase_29 AC 262 ms
20,736 KB
testcase_30 AC 552 ms
20,352 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
I=[nil,1,5,nil,7,2,nil,4,8]
def z(n)
	r=0
	while n%3==0
		r+=1
		n/=3
	end
	[n,r]
end
def comb(n,k)
	k0,z0=F[n]
	k1,z1=F[k]
	k2,z2=F[n-k]
	z=z0-z1-z2
	r=k0*I[k1]*I[k2]%9
	[r,r*3%9][z]||0
end

F=[[1,0]]
(1..100000).each{|i|
	k0,z0=F[i-1]
	k1,z1=z(i)
	F[i]=[k0*k1%9,z0+z1]
}
gets.to_i.times{
	r=0
	s=gets.chomp
	s.each_byte.with_index{|b,i|r=(r+(b-48)*comb(s.size-1,i))%9}
	p r!=0||s.each_byte.all?{|b|b==48} ? r : 9
}
0