結果

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

ソースコード

diff #

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