結果
問題 |
No.1390 Get together
|
ユーザー |
|
提出日時 | 2020-09-01 22:05:58 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 228 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 81,716 KB |
実行使用メモリ | 67,280 KB |
最終ジャッジ日時 | 2024-11-30 10:33:57 |
合計ジャッジ時間 | 3,469 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 29 |
ソースコード
N,M = map(int,input().split()) assert(1<=N<=2*10**5) assert(1<=M<=2*10**5) b = list(map(int,input().split())) c = list(map(int,input().split())) assert(all(1<=b[i]<=M for i in range(N))) assert(all(1<=c[i]<=N for i in range(N)))