結果

問題 No.1142 XOR と XOR
コンテスト
ユーザー tyawanmusi
提出日時 2020-06-27 16:47:14
言語 Python3
(3.14.3 + numpy 2.4.2 + scipy 1.17.0)
コンパイル:
python3 -mpy_compile _filename_
実行:
python3 _filename_
結果
RE  
実行時間 -
コード長 293 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 544 ms
コンパイル使用メモリ 20,828 KB
実行使用メモリ 41,224 KB
最終ジャッジ日時 2026-03-27 03:21:16
合計ジャッジ時間 9,433 ms
ジャッジサーバーID
(参考情報)
judge2_1 / 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(not(n!=len(a)))
assert(not(m!=len(b)))
assert(not(1<=n<=2*10**5))
assert(not(1<=m<=2*10**5))
assert(not(0<=k<1024))
for i in a:
  assert(not(0<=i<1024))
for j in b:
  assert(not(0<=j<1024))
0