結果
問題 | No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩 |
ユーザー | vwxyz |
提出日時 | 2023-12-01 00:41:06 |
言語 | PyPy2 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,419 bytes |
コンパイル時間 | 2,423 ms |
コンパイル使用メモリ | 76,928 KB |
実行使用メモリ | 112,760 KB |
最終ジャッジ日時 | 2024-09-26 15:00:15 |
合計ジャッジ時間 | 25,886 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 82 ms
81,152 KB |
testcase_01 | AC | 83 ms
75,136 KB |
testcase_02 | AC | 112 ms
77,464 KB |
testcase_03 | AC | 99 ms
77,440 KB |
testcase_04 | AC | 89 ms
76,416 KB |
testcase_05 | AC | 82 ms
75,264 KB |
testcase_06 | AC | 86 ms
76,032 KB |
testcase_07 | AC | 85 ms
76,160 KB |
testcase_08 | AC | 114 ms
77,824 KB |
testcase_09 | AC | 103 ms
77,568 KB |
testcase_10 | AC | 122 ms
77,952 KB |
testcase_11 | AC | 106 ms
77,824 KB |
testcase_12 | AC | 106 ms
77,568 KB |
testcase_13 | AC | 124 ms
78,080 KB |
testcase_14 | AC | 105 ms
77,312 KB |
testcase_15 | AC | 131 ms
78,080 KB |
testcase_16 | AC | 114 ms
77,696 KB |
testcase_17 | AC | 122 ms
78,080 KB |
testcase_18 | AC | 330 ms
80,896 KB |
testcase_19 | AC | 209 ms
78,080 KB |
testcase_20 | AC | 386 ms
81,152 KB |
testcase_21 | AC | 165 ms
78,080 KB |
testcase_22 | AC | 212 ms
78,208 KB |
testcase_23 | AC | 281 ms
79,360 KB |
testcase_24 | AC | 248 ms
78,336 KB |
testcase_25 | AC | 268 ms
78,976 KB |
testcase_26 | AC | 307 ms
80,256 KB |
testcase_27 | AC | 262 ms
79,104 KB |
testcase_28 | AC | 1,723 ms
100,572 KB |
testcase_29 | AC | 1,657 ms
98,724 KB |
testcase_30 | AC | 1,570 ms
99,788 KB |
testcase_31 | AC | 1,864 ms
109,172 KB |
testcase_32 | AC | 1,512 ms
106,240 KB |
testcase_33 | AC | 1,415 ms
97,448 KB |
testcase_34 | AC | 1,811 ms
105,856 KB |
testcase_35 | TLE | - |
testcase_36 | TLE | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
testcase_68 | -- | - |
testcase_69 | -- | - |
testcase_70 | -- | - |
testcase_71 | -- | - |
testcase_72 | -- | - |
testcase_73 | -- | - |
ソースコード
import sys readline=sys.stdin.readline import bisect def Bisect_Int(ok,ng,is_ok): while abs(ok-ng)>1: mid=(ok+ng)//2 if is_ok(mid): ok=mid else: ng=mid return ok K,L,M,N,S=map(int,readline().split()) A=list(map(int,readline().split())) B=list(map(int,readline().split())) C=list(map(int,readline().split())) D=list(map(int,readline().split())) plus0,minus0,zero0=[],[],0 for a in A: for b in B: if a*b>0: plus0.append(a*b) elif a*b<0: minus0.append(-a*b) else: zero0+=1 plus1,minus1,zero1=[],[],0 for c in C: for d in D: if c*d>0: plus1.append(c*d) elif c*d<0: minus1.append(-c*d) else: zero1+=1 minus0.sort() minus1.sort() plus0.sort() plus1.sort() def is_ok(ans): cnt=0 if ans<0: for ab in minus0: cnt+=len(plus1)-bisect.bisect_left(plus1,(-ans)//ab+1) for ab in plus0: cnt+=len(minus1)-bisect.bisect_left(minus1,(-ans)//ab+1) elif ans==0: cnt+=len(plus0)*len(minus1) cnt+=len(plus1)*len(minus0) else: cnt+=len(plus0)*len(minus1) cnt+=len(plus1)*len(minus0) cnt+=zero0*(len(plus1)+len(minus1))+zero1*(len(plus0)+len(minus0))+zero0*zero1 for ab in minus0: cnt+=bisect.bisect_right(minus1,(ans-1)//ab) for ab in plus0: cnt+=bisect.bisect_right(plus1,(ans-1)//ab) return cnt<S inf=1<<60 ans=Bisect_Int(-inf,inf,is_ok) if ans==0: for kk in range(K): if A[kk]==0: k,l,m,n=kk,0,0,0 break else: for ll in range(L): if B[ll]==0: k,l,m,n=0,ll,0,0 break else: for mm in range(M): if C[mm]==0: k,l,m,n=0,0,mm,0 break else: for nn in range(N): if D[nn]==0: k,l,m,n=0,0,0,nn else: dct={} for k in range(K): for l in range(L): dct[A[k]*B[l]]=(k,l) for m in range(M): for n in range(N): cd=C[m]*D[n] if cd and ans%cd==0 and ans//cd in dct: k,l=dct[ans//cd] break else: continue break print(ans) print(" ".join(map(str,(A[k],B[l],C[m],D[n]))))