結果

問題 No.2617 容量3のナップザック
ユーザー 👑 p-adicp-adic
提出日時 2023-12-19 22:06:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,049 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,612 KB
実行使用メモリ 310,436 KB
最終ジャッジ日時 2024-09-27 11:11:52
合計ジャッジ時間 13,714 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,680 KB
testcase_01 AC 39 ms
53,824 KB
testcase_02 AC 39 ms
53,708 KB
testcase_03 AC 37 ms
53,124 KB
testcase_04 AC 40 ms
52,808 KB
testcase_05 AC 39 ms
52,548 KB
testcase_06 AC 40 ms
52,824 KB
testcase_07 AC 38 ms
53,040 KB
testcase_08 AC 38 ms
53,288 KB
testcase_09 AC 40 ms
52,492 KB
testcase_10 AC 40 ms
53,424 KB
testcase_11 AC 40 ms
53,164 KB
testcase_12 AC 450 ms
185,400 KB
testcase_13 AC 351 ms
157,908 KB
testcase_14 AC 431 ms
190,264 KB
testcase_15 AC 275 ms
135,396 KB
testcase_16 AC 452 ms
219,912 KB
testcase_17 AC 374 ms
173,044 KB
testcase_18 AC 347 ms
156,680 KB
testcase_19 AC 114 ms
99,808 KB
testcase_20 AC 342 ms
158,028 KB
testcase_21 AC 268 ms
164,376 KB
testcase_22 AC 371 ms
158,028 KB
testcase_23 AC 446 ms
193,368 KB
testcase_24 AC 74 ms
79,620 KB
testcase_25 AC 303 ms
151,680 KB
testcase_26 AC 607 ms
246,652 KB
testcase_27 AC 227 ms
129,444 KB
testcase_28 AC 71 ms
75,828 KB
testcase_29 AC 208 ms
128,712 KB
testcase_30 AC 355 ms
158,152 KB
testcase_31 AC 397 ms
166,144 KB
testcase_32 AC 415 ms
179,072 KB
testcase_33 AC 465 ms
182,460 KB
testcase_34 AC 500 ms
204,564 KB
testcase_35 AC 443 ms
177,072 KB
testcase_36 AC 1,049 ms
310,436 KB
testcase_37 AC 522 ms
203,972 KB
testcase_38 AC 407 ms
165,752 KB
testcase_39 AC 507 ms
193,192 KB
testcase_40 AC 463 ms
184,756 KB
testcase_41 AC 249 ms
176,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
N,K,s,a,b,m=map(int,input().split())
f=[s]
for i in R(2*N):f+=[(a*f[-1]+b)%m]
v=[[-9**18]for w in R(3)]
for i in R(N):v[f[i]%3]+=[-(f[i]%3+1)*f[i+N]]
for w in R(3):
	u=v[w]
	u.sort()
	u[0],b=0,len(u)
	for i in R(1,b):u[i]=u[i-1]-u[i]
	while b<3*K+3:
		u+=[u[-1]]
		b+=1
a=v[2][K]
for k in R(K):
	b=K-k
	l,r=0,b+1
	while l<r-1:
		m=(l+r)//2
		if v[1][m]-v[1][m-1]<v[0][3*b-2*m+2]-v[0][3*b-2*m]:r=m
		else:l=m
	a=max(a,v[2][k]+v[1][l]+v[0][3*b-2*l])
print(a)
0