結果

問題 No.814 ジジ抜き
ユーザー vwxyzvwxyz
提出日時 2024-04-24 20:53:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 607 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 66,556 KB
最終ジャッジ日時 2024-11-07 05:54:46
合計ジャッジ時間 30,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
44,028 KB
testcase_01 AC 534 ms
44,412 KB
testcase_02 AC 522 ms
44,404 KB
testcase_03 AC 541 ms
44,284 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 1,662 ms
63,104 KB
testcase_07 AC 872 ms
52,212 KB
testcase_08 AC 1,150 ms
62,068 KB
testcase_09 AC 1,279 ms
55,296 KB
testcase_10 AC 1,302 ms
61,944 KB
testcase_11 AC 1,629 ms
62,456 KB
testcase_12 AC 937 ms
51,316 KB
testcase_13 AC 916 ms
51,588 KB
testcase_14 AC 1,119 ms
56,056 KB
testcase_15 AC 853 ms
49,780 KB
testcase_16 AC 806 ms
49,532 KB
testcase_17 AC 1,446 ms
58,744 KB
testcase_18 AC 1,083 ms
54,524 KB
testcase_19 AC 1,211 ms
62,460 KB
testcase_20 AC 999 ms
51,708 KB
testcase_21 AC 917 ms
52,480 KB
testcase_22 AC 1,043 ms
59,384 KB
testcase_23 AC 830 ms
50,292 KB
testcase_24 AC 1,009 ms
55,680 KB
testcase_25 AC 915 ms
53,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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.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.int8)
def is_ok(ans):
    where=np.where(ans>=L)[0]
    return np.sum(np.minimum(K[where],(ans-L[where]>>D[where])+1)%2)%2
ans=Bisect_Int(1<<60,-1,is_ok)
print(ans)
0