結果

問題 No.695 square1001 and Permutation 4
ユーザー cielciel
提出日時 2020-11-13 14:09:20
言語 Crystal
(1.11.2)
結果
AC  
実行時間 1,120 ms / 7,000 ms
コード長 415 bytes
コンパイル時間 11,914 ms
コンパイル使用メモリ 295,284 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-06-30 21:36:50
合計ジャッジ時間 17,920 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 43 ms
6,944 KB
testcase_02 AC 73 ms
12,692 KB
testcase_03 AC 48 ms
12,516 KB
testcase_04 AC 202 ms
12,512 KB
testcase_05 AC 306 ms
12,536 KB
testcase_06 AC 656 ms
22,328 KB
testcase_07 AC 395 ms
22,272 KB
testcase_08 AC 404 ms
22,272 KB
testcase_09 AC 644 ms
22,300 KB
testcase_10 AC 129 ms
6,656 KB
testcase_11 AC 1,120 ms
41,856 KB
testcase_12 AC 882 ms
41,856 KB
testcase_13 AC 834 ms
41,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(v,n,q,x)
	m=n//2;r=0_i64
	(1...n-m).each{|i|v[i]=0}
	(1...n-m).each{|i|x.each{|e|
		e<=i && (v[i]=(v[i]+v[i-e])%q)
	}}
	x.each{|e|([m-e,0].max...[n-e,m].min).each{|i|
		r=(r+1_i64*v[i]*v[n-i-e-1])%q
	}}
	r
end

n,m=gets.not_nil!.split.map &.to_i
x=gets.not_nil!.split.map &.to_i
m1=168647939;m2=592951213
v=[0]*(n-n//2);v[0]=1
r1=solve(v,n,m1,x);r2=solve(v,n,m2,x)
rm=(r2-r1+m2)*442445312%m2
puts rm*m1+r1
0