結果

問題 No.1282 Display Elements
ユーザー O2MTO2MT
提出日時 2020-11-17 21:31:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,604 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,216 KB
最終ジャッジ日時 2024-07-23 08:29:40
合計ジャッジ時間 10,224 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 32 ms
10,880 KB
testcase_11 AC 33 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 32 ms
11,008 KB
testcase_15 AC 901 ms
24,600 KB
testcase_16 AC 229 ms
16,420 KB
testcase_17 AC 669 ms
22,336 KB
testcase_18 AC 321 ms
18,004 KB
testcase_19 AC 1,571 ms
26,216 KB
testcase_20 AC 1,604 ms
25,788 KB
testcase_21 AC 1,044 ms
25,956 KB
testcase_22 AC 1,012 ms
25,792 KB
testcase_23 AC 1,040 ms
25,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left
N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))

A.sort()
que = []
count,k = 0,0
minB = B[0]

for i in range(N):
    j = bisect_left(que,B[i])
    que.insert(j,B[i])
    minB = min(B[i],minB)
    if A[k] > minB:
        count += bisect_left(que,A[k])
    k += 1

print(count)
0