結果

問題 No.814 ジジ抜き
ユーザー vwxyzvwxyz
提出日時 2022-06-23 14:30:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 608 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 66,684 KB
最終ジャッジ日時 2024-11-07 05:12:40
合計ジャッジ時間 31,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 521 ms
44,540 KB
testcase_01 AC 521 ms
44,536 KB
testcase_02 AC 516 ms
44,408 KB
testcase_03 AC 536 ms
44,416 KB
testcase_04 MLE -
testcase_05 MLE -
testcase_06 AC 1,664 ms
63,100 KB
testcase_07 AC 860 ms
51,576 KB
testcase_08 AC 1,137 ms
62,200 KB
testcase_09 AC 1,333 ms
56,060 KB
testcase_10 AC 1,348 ms
62,076 KB
testcase_11 AC 1,602 ms
62,592 KB
testcase_12 AC 956 ms
51,704 KB
testcase_13 AC 885 ms
51,960 KB
testcase_14 AC 1,143 ms
56,184 KB
testcase_15 AC 821 ms
50,040 KB
testcase_16 AC 774 ms
49,272 KB
testcase_17 AC 1,421 ms
58,624 KB
testcase_18 AC 1,087 ms
54,776 KB
testcase_19 AC 1,208 ms
62,204 KB
testcase_20 AC 1,002 ms
51,576 KB
testcase_21 AC 924 ms
53,372 KB
testcase_22 AC 1,046 ms
59,264 KB
testcase_23 AC 817 ms
50,556 KB
testcase_24 AC 972 ms
56,436 KB
testcase_25 AC 897 ms
53,372 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.int64)
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