結果

問題 No.387 ハンコ
ユーザー titiatitia
提出日時 2023-01-31 02:57:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 458 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 105,760 KB
最終ジャッジ日時 2024-06-30 09:50:43
合計ジャッジ時間 30,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,588 ms
105,760 KB
testcase_01 AC 4,582 ms
105,380 KB
testcase_02 AC 3,827 ms
104,924 KB
testcase_03 AC 3,803 ms
105,068 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 4,129 ms
105,132 KB
testcase_08 AC 3,974 ms
105,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

LIST=[[] for i in range(N+1)]

for i in range(N):
    LIST[A[i]].append(i)

now=0
for i in range(N):
    if B[i]==1:
        now^=(1<<i)

ANS=0

for i in range(N+1):
    if LIST[i]==[]:
        continue

    score=0
    for j in LIST[i]:
        score|=now<<j
    ANS^=score

for i in range(2*N-1):
    if ANS & (1<<i) ==0:
        print("EVEN")
    else:
        print("ODD")
0