結果

問題 No.387 ハンコ
ユーザー convexineqconvexineq
提出日時 2021-02-05 06:15:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,558 ms / 5,000 ms
コード長 364 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,096 KB
最終ジャッジ日時 2024-07-01 18:34:10
合計ジャッジ時間 28,930 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,558 ms
102,000 KB
testcase_01 AC 3,529 ms
102,096 KB
testcase_02 AC 2,701 ms
99,840 KB
testcase_03 AC 2,726 ms
100,352 KB
testcase_04 AC 551 ms
85,632 KB
testcase_05 AC 1,468 ms
93,952 KB
testcase_06 AC 2,519 ms
99,072 KB
testcase_07 AC 3,365 ms
100,396 KB
testcase_08 AC 3,385 ms
100,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
b = int("".join(input().split())[::-1],2)
N = 10**5+1

r = [[] for _ in range(N)]
for i in range(n):
    r[a[i]].append(i)

res = 0
for i in range(N):
    if r[i] is None: continue
    v = 0
    for j in r[i]:
        v |= b<<j
    res ^= v

for _ in range(2*n-1):
    print("ODD" if res&1 else "EVEN")
    res >>= 1
0