結果
問題 | No.2308 [Cherry 5th Tune B] もしかして、真? |
ユーザー | titia |
提出日時 | 2023-05-19 23:26:46 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,766 bytes |
コンパイル時間 | 276 ms |
コンパイル使用メモリ | 13,056 KB |
実行使用メモリ | 72,024 KB |
最終ジャッジ日時 | 2024-05-10 06:44:03 |
合計ジャッジ時間 | 64,394 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | AC | 1,898 ms
53,112 KB |
testcase_17 | AC | 1,788 ms
53,796 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | AC | 1,847 ms
71,664 KB |
testcase_24 | AC | 1,918 ms
71,764 KB |
testcase_25 | WA | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | AC | 1,851 ms
71,984 KB |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | AC | 1,211 ms
65,860 KB |
testcase_32 | AC | 1,195 ms
65,988 KB |
testcase_33 | AC | 1,338 ms
65,892 KB |
testcase_34 | AC | 1,238 ms
68,624 KB |
testcase_35 | AC | 1,226 ms
68,576 KB |
testcase_36 | AC | 1,237 ms
68,828 KB |
testcase_37 | AC | 110 ms
11,136 KB |
testcase_38 | AC | 1,783 ms
52,864 KB |
ソースコード
import sys input = sys.stdin.readline def calc(x,op,y): if op=="and": return x & y if op =="or": return x|y if op =="xor": return x^y if op=="imp": return (x^1)|y def update(v,w): # index vにwを加える while v<=LEN: BIT[v]+=w v+=(v&(-v)) # v&(-v)で、最も下の立っているビット. 自分を含む大きなノードへ. たとえばv=3→v=4 def getvalue(v): # [1,v]の区間の和を求める ANS=0 while v!=0: ANS+=BIT[v] v-=(v&(-v)) # 自分より小さい自分の和を構成するノードへ. たとえばv=14→v=12へ return ANS T=int(input()) for tests in range(T): N=int(input()) X=input().split() Y=input().split() S=list(map(int,input().split())) for i in range(N): if X[i]=="True": X[i]=1 else: X[i]=0 LIST=[] for i in range(N): LIST.append(X[i]) if i<len(Y): LIST.append(Y[i]) LEFT=[i-1 for i in range(len(LIST))] RIGHT=[i+1 for i in range(len(LIST))] LEN=len(LIST)+3 BIT=[0]*(LEN+1) #print(LIST) for s in S: plus=getvalue(s-1) x=(s-1+plus)*2 while LIST[x]==-1: x=RIGHT[RIGHT[x]] a=LIST[x] b=LIST[RIGHT[x]] c=LIST[RIGHT[RIGHT[x]]] ret=calc(a,b,c) #print(a,b,c,x) LIST[x]=ret LIST[RIGHT[x]]=-1 LIST[RIGHT[RIGHT[x]]]=-1 #print(LIST) RIGHT[x]=RIGHT[RIGHT[RIGHT[x]]] update(s,1) #print(LIST) for x in LIST: if x!=-1: if x==1: print("True") else: print("False") break