結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー 👑 p-adicp-adic
提出日時 2023-05-20 15:47:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 621 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 155,032 KB
最終ジャッジ日時 2024-12-21 11:30:07
合計ジャッジ時間 126,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
81,556 KB
testcase_01 TLE -
testcase_02 AC 2,908 ms
82,572 KB
testcase_03 AC 2,787 ms
155,032 KB
testcase_04 AC 2,638 ms
82,448 KB
testcase_05 AC 2,603 ms
154,372 KB
testcase_06 AC 2,523 ms
82,420 KB
testcase_07 AC 2,573 ms
154,856 KB
testcase_08 AC 2,905 ms
82,816 KB
testcase_09 AC 2,591 ms
154,616 KB
testcase_10 AC 2,377 ms
82,424 KB
testcase_11 AC 2,404 ms
154,380 KB
testcase_12 AC 2,626 ms
82,416 KB
testcase_13 AC 2,983 ms
77,300 KB
testcase_14 AC 2,437 ms
77,300 KB
testcase_15 AC 2,689 ms
77,316 KB
testcase_16 AC 2,317 ms
77,100 KB
testcase_17 AC 2,723 ms
77,044 KB
testcase_18 AC 2,458 ms
77,188 KB
testcase_19 AC 2,311 ms
77,068 KB
testcase_20 AC 2,396 ms
77,444 KB
testcase_21 AC 2,333 ms
76,936 KB
testcase_22 AC 1,987 ms
76,944 KB
testcase_23 AC 2,303 ms
76,940 KB
testcase_24 AC 2,942 ms
77,440 KB
testcase_25 AC 2,671 ms
76,940 KB
testcase_26 TLE -
testcase_27 AC 2,840 ms
77,692 KB
testcase_28 AC 2,655 ms
77,296 KB
testcase_29 AC 2,848 ms
77,320 KB
testcase_30 AC 2,883 ms
76,932 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 787 ms
76,932 KB
testcase_37 AC 265 ms
76,448 KB
testcase_38 AC 590 ms
76,788 KB
testcase_39 AC 401 ms
76,428 KB
testcase_40 AC 565 ms
76,480 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 2,653 ms
77,432 KB
testcase_44 AC 2,721 ms
77,304 KB
testcase_45 AC 2,308 ms
77,196 KB
testcase_46 AC 2,504 ms
77,176 KB
testcase_47 AC 583 ms
76,432 KB
testcase_48 AC 837 ms
76,496 KB
testcase_49 AC 2,103 ms
153,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def m():
	I,R=input,range
	S,N,B,x=R(3),R(2),[0]*6,[0]*4
	def J():
		return list(map(int,I().split()))
	def U():
		s,b,c=sum(x),1,0
		for j in R(4):b,c=b*(x[j]>=0),c+x[j]*X[j]
		for j in S:b*=s-x[j]<=B[j+2]
		return c if b else 0
	def V():
		m=0
		for k in R(6):B[k]=A[k%3]if k%3!=j else y
		for i in S:
			for k in S:x[k]=B[i+2]-B[k+2]
			x[3]=B[i]+B[i+1]-B[i+2]
			m=max(m,U())
		for w in N:
			x[3],x[0]=w,(B[0]+B[1]-B[2]-w)//2
			for k in N:x[1+k]=B[1-k]-x[0]-w
			m=max(m,U())
		return m
	for t in R(int(I())):
		A,X,a=J(),J(),0
		for j in S:
			for y in R(A[j]+1):a=max(a,V())
		print(a)
if __name__=="__main__":m()
0