結果
問題 | No.2308 [Cherry 5th Tune B] もしかして、真? |
ユーザー | ntuda |
提出日時 | 2023-05-21 12:28:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,120 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 130,824 KB |
最終ジャッジ日時 | 2024-06-01 12:31:59 |
合計ジャッジ時間 | 43,288 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,988 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | RE | - |
testcase_07 | AC | 1,265 ms
112,048 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 1,239 ms
124,468 KB |
testcase_12 | AC | 1,232 ms
123,016 KB |
testcase_13 | AC | 1,195 ms
123,288 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1,190 ms
121,516 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,198 ms
130,688 KB |
testcase_25 | AC | 1,212 ms
130,176 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1,220 ms
130,284 KB |
testcase_29 | WA | - |
testcase_30 | AC | 1,256 ms
130,428 KB |
testcase_31 | AC | 973 ms
127,636 KB |
testcase_32 | AC | 1,004 ms
127,608 KB |
testcase_33 | AC | 989 ms
128,232 KB |
testcase_34 | AC | 1,005 ms
128,772 KB |
testcase_35 | AC | 996 ms
129,656 KB |
testcase_36 | WA | - |
testcase_37 | RE | - |
testcase_38 | AC | 1,177 ms
114,608 KB |
ソースコード
class Bit: def __init__(self, n): self.size = n self.tree = [0] * (n + 1) def sum(self, i): s = 0 while i > 0: s += self.tree[i] i -= i & -i return s def add(self, i, x): while i <= self.size: self.tree[i] += x i += i & -i def search(x): lb = 1 ub = N + 1 while ub - lb > 1: mid = (lb + ub) // 2 if bit.sum(mid) <= x: lb = mid else: ub = mid return lb T = int(input()) for t in range(T): N = int(input()) X = [True if x == "True" else False for x in input().split()] Y = input().split() S = list(map(int, input().split())) bit = Bit(N + 1) for i in range(1, N + 1): bit.add(i, 1) for s in S: r = search(s) l = search(s - 1) if Y[l] == "and": X[r] &= X[l] elif Y[l] == "or": X[r] |= X[l] elif Y[l] == "xor": X[r] ^= X[l] else: if X[l] == False: X[r] = True bit.add(l, -1) print(X[r])