結果
問題 | No.814 ジジ抜き |
ユーザー | vwxyz |
提出日時 | 2022-06-23 14:17:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 576 bytes |
コンパイル時間 | 116 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 64,036 KB |
最終ジャッジ日時 | 2024-11-07 04:53:00 |
合計ジャッジ時間 | 28,784 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 517 ms
43,728 KB |
testcase_01 | AC | 519 ms
43,728 KB |
testcase_02 | AC | 522 ms
44,088 KB |
testcase_03 | AC | 529 ms
43,968 KB |
testcase_04 | WA | - |
testcase_05 | MLE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
ソースコード
import sys readline=sys.stdin.readline 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 import numpy as np N=int(readline()) K,L,D=[],[],[] for _ in range(N): k,l,d=map(int,readline().split()) k=min(k,1<<62) K.append(k) L.append(l) D.append(d) K=np.array(K,dtype=np.int64) L=np.array(L,dtype=np.int64) D=np.array(D,dtype=np.int64) def is_ok(ans): return np.sum(np.minimum(K,(ans-L>>D)+1)&1)&1 ans=Bisect_Int(1<<62,-1,is_ok) print(ans)