結果

問題 No.387 ハンコ
ユーザー convexineqconvexineq
提出日時 2021-02-05 06:25:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,744 ms / 5,000 ms
コード長 258 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 101,596 KB
最終ジャッジ日時 2024-07-01 19:14:03
合計ジャッジ時間 22,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,714 ms
100,864 KB
testcase_01 AC 2,744 ms
100,608 KB
testcase_02 AC 1,967 ms
100,244 KB
testcase_03 AC 1,972 ms
100,224 KB
testcase_04 AC 530 ms
85,968 KB
testcase_05 AC 1,231 ms
94,488 KB
testcase_06 AC 2,068 ms
100,352 KB
testcase_07 AC 2,638 ms
100,736 KB
testcase_08 AC 2,630 ms
101,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
*a,=map(int,input().split())
b=int("".join(input().split())[::-1],2)
r=[[]for _ in range(2**17)]
for i in range(n):r[a[i]]+=[i]
x=1<<2*n
for l in r:
    v=0
    for j in l:v|=b<<j
    x^=v
for i in bin(x)[:3:-1]:print("ODD"if i=="1"else"EVEN")
0