結果

問題 No.387 ハンコ
ユーザー maspymaspy
提出日時 2020-04-03 04:02:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,540 ms / 5,000 ms
コード長 295 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,052 KB
最終ジャッジ日時 2024-06-28 17:41:03
合計ジャッジ時間 12,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,270 ms
30,052 KB
testcase_01 AC 1,274 ms
29,924 KB
testcase_02 AC 1,415 ms
29,276 KB
testcase_03 AC 1,415 ms
29,404 KB
testcase_04 AC 232 ms
23,200 KB
testcase_05 AC 542 ms
26,604 KB
testcase_06 AC 910 ms
28,940 KB
testcase_07 AC 1,540 ms
29,860 KB
testcase_08 AC 1,525 ms
27,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=map(int,input().split())
B=int(''.join(input().split())[::-1],2)
C=[[] for _ in range(1<<17)]
for i,x in enumerate(A):
  C[x]+=[i]
d=0
for I in C:
  x = 0
  for i in I:
    x|=B<<i
  d^=x
d^=(1<<N+N)
print('\n'.join('ODD' if x == '1' else 'EVEN' for x in bin(d)[::-1][:N+N-1]))
0