結果

問題 No.1282 Display Elements
ユーザー KazunKazun
提出日時 2020-11-06 21:57:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 739 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 97,640 KB
最終ジャッジ日時 2024-07-22 12:45:15
合計ジャッジ時間 5,864 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,632 KB
testcase_01 AC 40 ms
53,632 KB
testcase_02 AC 39 ms
53,888 KB
testcase_03 AC 38 ms
53,888 KB
testcase_04 AC 39 ms
53,632 KB
testcase_05 AC 39 ms
54,144 KB
testcase_06 AC 38 ms
54,144 KB
testcase_07 AC 40 ms
54,144 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 38 ms
54,016 KB
testcase_10 AC 42 ms
60,800 KB
testcase_11 AC 43 ms
60,544 KB
testcase_12 AC 40 ms
54,016 KB
testcase_13 AC 47 ms
61,312 KB
testcase_14 AC 49 ms
62,720 KB
testcase_15 AC 659 ms
95,476 KB
testcase_16 AC 143 ms
85,248 KB
testcase_17 AC 519 ms
94,464 KB
testcase_18 AC 184 ms
88,776 KB
testcase_19 AC 88 ms
91,708 KB
testcase_20 AC 275 ms
96,564 KB
testcase_21 AC 739 ms
97,248 KB
testcase_22 AC 700 ms
97,640 KB
testcase_23 AC 736 ms
97,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Binary_Search_Big_Count(A,x,equal=False,sort=False):
    """2分探索によって,xを超える要素の個数を調べる.

    A:リスト
    x:調べる要素
    sort:ソートをする必要があるかどうか(Trueで必要)
    equal:Trueのときはx"を超える"がx"以上"になる
    """

    if sort:
        A.sort()

    if A[-1]<x or ((not equal) and A[-1]==x):
        return 0

    L,R=-1,len(A)-1
    while R-L>1:
        C=L+(R-L)//2
        if A[C]>x or (equal and A[C]==x):
            R=C
        else:
            L=C
    return len(A)-R
#================================================
import sys
from collections import deque

input=sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

A.sort()
A=deque(A)

X=0
for i in range(N):
    X+=Binary_Search_Big_Count(A,B[i])
    _=A.popleft()
print(X)
0