結果
問題 |
No.1142 XOR と XOR
|
ユーザー |
![]() |
提出日時 | 2020-06-27 16:46:48 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 258 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 37,532 KB |
最終ジャッジ日時 | 2024-07-05 17:58:10 |
合計ジャッジ時間 | 3,717 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 25 |
ソースコード
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)