結果
問題 | No.814 ジジ抜き |
ユーザー | tktk_snsn |
提出日時 | 2021-04-28 22:12:56 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 434 bytes |
コンパイル時間 | 349 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 126,592 KB |
最終ジャッジ日時 | 2024-07-07 21:15:41 |
合計ジャッジ時間 | 15,630 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,096 KB |
testcase_01 | AC | 35 ms
51,968 KB |
testcase_02 | AC | 36 ms
52,096 KB |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
ソースコード
import sys input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) N = int(input()) KLD = tuple(tuple(map(int, input().split())) for _ in range(N)) def F(x): cnt = 0 for k, l, d in KLD: if x < l: continue i = 1 + (x-l)//pow(2, d) cnt += min(i, k) return cnt % 2 l = -1 r = 10**18 while r-l > 1: m = (r+l)//2 if F(m): r = m else: l = m print(r)