結果

問題 No.387 ハンコ
ユーザー convexineqconvexineq
提出日時 2021-02-05 06:31:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,919 ms / 5,000 ms
コード長 254 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,376 KB
最終ジャッジ日時 2024-07-01 19:19:11
合計ジャッジ時間 23,868 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,919 ms
100,992 KB
testcase_01 AC 2,893 ms
100,872 KB
testcase_02 AC 2,034 ms
100,480 KB
testcase_03 AC 2,057 ms
100,480 KB
testcase_04 AC 544 ms
86,252 KB
testcase_05 AC 1,299 ms
94,456 KB
testcase_06 AC 2,140 ms
100,224 KB
testcase_07 AC 2,756 ms
100,736 KB
testcase_08 AC 2,747 ms
101,376 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("EOVDEDN"[i=="1"::2])
0