結果

問題 No.1282 Display Elements
ユーザー c-yan
提出日時 2020-11-06 22:28:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 258 bytes
コンパイル時間 3,620 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 106,676 KB
最終ジャッジ日時 2024-07-22 13:11:43
合計ジャッジ時間 5,549 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 14 TLE * 1 -- * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

N = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

a.sort()
t = []
result = 0
for i in range(N):
    t.append(b[i])
    t.sort()
    result += len(t) - bisect_left(t, a[i])
print(result)
0