結果

問題 No.1142 XOR と XOR
コンテスト
ユーザー tyawanmusi
提出日時 2020-06-27 16:46:48
言語 Python3
(3.14.3 + numpy 2.4.2 + scipy 1.17.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
RE  
実行時間 -
コード長 258 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 366 ms
コンパイル使用メモリ 20,828 KB
実行使用メモリ 41,352 KB
最終ジャッジ日時 2026-03-27 03:21:36
合計ジャッジ時間 8,280 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 25
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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