結果

問題 No.387 ハンコ
ユーザー titiatitia
提出日時 2023-01-31 02:59:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,627 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 105,680 KB
最終ジャッジ日時 2024-06-30 09:51:53
合計ジャッジ時間 36,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,573 ms
105,208 KB
testcase_01 AC 4,627 ms
105,504 KB
testcase_02 AC 3,775 ms
105,316 KB
testcase_03 AC 3,755 ms
105,304 KB
testcase_04 AC 461 ms
85,824 KB
testcase_05 AC 1,623 ms
96,284 KB
testcase_06 AC 3,049 ms
103,180 KB
testcase_07 AC 4,112 ms
105,680 KB
testcase_08 AC 3,988 ms
104,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

LIST=[[] for i in range(100001)]

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(100001):
    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