結果

問題 No.1142 XOR と XOR
ユーザー tyawanmusi
提出日時 2020-06-27 16:48:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 37,200 KB
最終ジャッジ日時 2024-07-05 17:58:05
合計ジャッジ時間 4,173 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#ごめんなさい
n,m,k=map(int,input().split())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
assert(n==len(a))
assert(m==len(b))
assert(1<=n<=2*10**5)
assert(1<=m<=2*10**5)
assert(0<=k<1024)
for i in a:
  assert(0<=i<1024)
for j in b:
  assert(0<=j<1024)
0