結果

問題 No.387 ハンコ
ユーザー maspymaspy
提出日時 2020-04-03 03:58:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,259 ms / 5,000 ms
コード長 446 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,776 KB
最終ジャッジ日時 2024-06-28 17:40:46
合計ジャッジ時間 10,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,070 ms
29,396 KB
testcase_01 AC 1,076 ms
29,776 KB
testcase_02 AC 1,246 ms
28,272 KB
testcase_03 AC 1,227 ms
28,320 KB
testcase_04 AC 158 ms
21,376 KB
testcase_05 AC 418 ms
24,836 KB
testcase_06 AC 747 ms
27,964 KB
testcase_07 AC 1,259 ms
26,200 KB
testcase_08 AC 1,251 ms
25,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int,input().split()))
B = int(''.join(input().split())[::-1],2)
U = 10 ** 5
color_ind = [[] for _ in range(U + 1)]
for i, x in enumerate(A):
    color_ind[x].append(i)

dp = 0

for ind in color_ind:
    if not ind:
        continue
    x = 0
    for i in ind:
        x |= B << i
    dp ^= x

dp ^= (1 << (N + N))
answer = ('ODD' if x == '1' else 'EVEN' for x in bin(dp)[::-1][:N + N - 1])
print('\n'.join(answer))
0