結果

問題 No.1282 Display Elements
ユーザー O2MTO2MT
提出日時 2020-11-17 21:31:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 943 ms / 2,000 ms
コード長 345 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 99,776 KB
最終ジャッジ日時 2024-07-23 08:29:51
合計ジャッジ時間 6,757 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,484 KB
testcase_01 AC 36 ms
53,072 KB
testcase_02 AC 41 ms
53,116 KB
testcase_03 AC 37 ms
54,032 KB
testcase_04 AC 38 ms
53,412 KB
testcase_05 AC 36 ms
53,060 KB
testcase_06 AC 37 ms
54,560 KB
testcase_07 AC 37 ms
53,780 KB
testcase_08 AC 37 ms
52,404 KB
testcase_09 AC 38 ms
53,116 KB
testcase_10 AC 44 ms
61,804 KB
testcase_11 AC 43 ms
60,440 KB
testcase_12 AC 41 ms
58,380 KB
testcase_13 AC 44 ms
60,568 KB
testcase_14 AC 47 ms
63,068 KB
testcase_15 AC 513 ms
99,776 KB
testcase_16 AC 162 ms
85,096 KB
testcase_17 AC 387 ms
97,312 KB
testcase_18 AC 211 ms
87,876 KB
testcase_19 AC 922 ms
96,324 KB
testcase_20 AC 943 ms
97,044 KB
testcase_21 AC 584 ms
97,792 KB
testcase_22 AC 590 ms
97,908 KB
testcase_23 AC 589 ms
97,408 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