結果

問題 No.1390 Get together
コンテスト
ユーザー chineristAC
提出日時 2020-09-01 22:05:58
言語 PyPy3
(7.3.17)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
RE  
実行時間 -
コード長 228 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 173 ms
コンパイル使用メモリ 85,528 KB
実行使用メモリ 67,304 KB
最終ジャッジ日時 2026-05-24 02:02:51
合計ジャッジ時間 3,057 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 29
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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)))
0