結果

問題 No.2442 線形写像
ユーザー ゼットゼット
提出日時 2023-08-25 21:33:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 84,788 KB
最終ジャッジ日時 2024-06-07 07:33:13
合計ジャッジ時間 3,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
51,456 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 42 ms
51,840 KB
testcase_05 AC 43 ms
51,456 KB
testcase_06 AC 43 ms
51,968 KB
testcase_07 AC 44 ms
51,840 KB
testcase_08 AC 44 ms
52,352 KB
testcase_09 AC 45 ms
51,968 KB
testcase_10 AC 47 ms
52,608 KB
testcase_11 AC 59 ms
60,672 KB
testcase_12 AC 61 ms
60,800 KB
testcase_13 AC 60 ms
60,544 KB
testcase_14 AC 60 ms
61,056 KB
testcase_15 AC 110 ms
79,488 KB
testcase_16 AC 111 ms
79,232 KB
testcase_17 AC 195 ms
84,788 KB
testcase_18 AC 157 ms
80,492 KB
testcase_19 AC 156 ms
80,104 KB
testcase_20 AC 156 ms
80,232 KB
testcase_21 AC 194 ms
84,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=[]
N=int(input())
w=0
T={}
for i in range(N):
  T[2**i]=i
for x in range(2**N):
  y=int(input())
  A.append(y)
  if x==0:
    if y!=0:
      print('No')
      exit()
  else:
    if x in T:
      w=x
    else:
      pos=x%w
      z=A[w]^A[pos]
      if z!=y:
        print('No')
        exit()
print('Yes')
      
  
0