結果
問題 | No.1361 [Zelkova 4th Tune *] QUADRUPLE-SEQUENCEの詩 |
ユーザー | vwxyz |
提出日時 | 2023-12-01 01:04:12 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,497 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 118,144 KB |
最終ジャッジ日時 | 2024-09-26 15:00:32 |
合計ジャッジ時間 | 17,128 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 167 ms
94,848 KB |
testcase_01 | AC | 170 ms
89,984 KB |
testcase_02 | AC | 181 ms
89,984 KB |
testcase_03 | AC | 186 ms
90,112 KB |
testcase_04 | AC | 184 ms
89,728 KB |
testcase_05 | AC | 179 ms
89,600 KB |
testcase_06 | AC | 189 ms
89,856 KB |
testcase_07 | AC | 195 ms
89,856 KB |
testcase_08 | AC | 235 ms
90,752 KB |
testcase_09 | AC | 220 ms
90,368 KB |
testcase_10 | AC | 236 ms
90,752 KB |
testcase_11 | AC | 215 ms
91,136 KB |
testcase_12 | AC | 230 ms
90,880 KB |
testcase_13 | AC | 211 ms
90,624 KB |
testcase_14 | AC | 198 ms
90,368 KB |
testcase_15 | AC | 241 ms
91,008 KB |
testcase_16 | AC | 240 ms
90,880 KB |
testcase_17 | AC | 217 ms
90,752 KB |
testcase_18 | AC | 691 ms
93,440 KB |
testcase_19 | AC | 379 ms
91,648 KB |
testcase_20 | AC | 561 ms
93,568 KB |
testcase_21 | AC | 588 ms
91,136 KB |
testcase_22 | AC | 596 ms
91,136 KB |
testcase_23 | AC | 755 ms
92,032 KB |
testcase_24 | AC | 977 ms
91,520 KB |
testcase_25 | AC | 802 ms
91,904 KB |
testcase_26 | AC | 815 ms
93,056 KB |
testcase_27 | AC | 496 ms
91,520 KB |
testcase_28 | TLE | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
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 bisect import copy import decimal import fractions import heapq import itertools import math import random import sys import time from collections import Counter,deque,defaultdict from functools import lru_cache,reduce from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max def _heappush_max(heap,item): heap.append(item) heapq._siftdown_max(heap, 0, len(heap)-1) def _heappushpop_max(heap, item): if heap and item < heap[0]: item, heap[0] = heap[0], item heapq._siftup_max(heap, 0) return item from math import gcd as GCD read=sys.stdin.read readline=sys.stdin.readline readlines=sys.stdin.readlines write=sys.stdout.write #import pypyjit #pypyjit.set_param('max_unroll_recursion=-1') #sys.set_int_max_str_digits(10**9) 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())) lst0=[] for a in A: for b in B: lst0.append(a*b) lst1=[] for c in C: for d in D: lst1.append(c*d) lst0.sort() def is_ok(ans): cnt=0 for cd in lst1: if cd<0: cnt+=len(lst0)-Bisect_Int(0,len(lst0)+1,lambda i:i==0 or lst0[i-1]*cd>=ans) elif cd==0: if 0<ans: cnt+=len(lst0) else: cnt+=Bisect_Int(0,len(lst0)+1,lambda i:i==0 or lst0[i-1]*cd<ans) 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(A[k],B[l],C[m],D[n])