結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー tyawanmusi
提出日時 2020-06-21 14:24:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,740 KB
最終ジャッジ日時 2024-07-03 17:59:29
合計ジャッジ時間 4,962 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 5
other WA * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
b=list(map(int,input().split()))
assert(1<=n<=10**5)
assert(n==len(a)==len(b))
p=[i+1 for i in range(n)]
a.sort()
b.sort()
assert(a==b==p)
0