結果

問題 No.435 占い(Extra)
ユーザー cielciel
提出日時 2016-10-18 01:02:10
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 468 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 24,612 KB
最終ジャッジ日時 2024-10-08 12:02:31
合計ジャッジ時間 11,672 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
22,784 KB
testcase_01 AC 154 ms
17,792 KB
testcase_02 AC 153 ms
17,536 KB
testcase_03 AC 152 ms
17,664 KB
testcase_04 AC 153 ms
17,536 KB
testcase_05 AC 155 ms
17,408 KB
testcase_06 AC 160 ms
18,432 KB
testcase_07 AC 154 ms
17,664 KB
testcase_08 AC 159 ms
17,536 KB
testcase_09 AC 163 ms
17,664 KB
testcase_10 AC 208 ms
17,408 KB
testcase_11 AC 206 ms
17,536 KB
testcase_12 RE -
testcase_13 AC 634 ms
17,408 KB
testcase_14 AC 600 ms
17,664 KB
testcase_15 AC 603 ms
18,304 KB
testcase_16 AC 668 ms
20,864 KB
testcase_17 AC 1,275 ms
21,248 KB
testcase_18 RE -
testcase_19 AC 616 ms
17,664 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 TLE -
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 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
	r*3**z%9
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{
	n,x,a,b,m=gets.split.map(&:to_i)
	r=0
	f=true
	n.times{|i|
		c=x%10
		r=(r+c*comb(n-1,i))%9
		f=false if c!=0
		x=((x^a)+b)%m
	}
	p r!=0||f ? r : 9
}
0