結果

問題 No.1282 Display Elements
ユーザー 👑 KazunKazun
提出日時 2020-11-06 21:54:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 787 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 276,800 KB
最終ジャッジ日時 2024-07-22 12:43:45
合計ジャッジ時間 4,901 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
60,088 KB
testcase_01 AC 34 ms
52,604 KB
testcase_02 AC 36 ms
52,888 KB
testcase_03 AC 37 ms
52,888 KB
testcase_04 AC 36 ms
53,024 KB
testcase_05 AC 40 ms
52,584 KB
testcase_06 AC 34 ms
52,308 KB
testcase_07 AC 37 ms
52,240 KB
testcase_08 AC 38 ms
52,768 KB
testcase_09 AC 35 ms
51,884 KB
testcase_10 AC 39 ms
63,300 KB
testcase_11 AC 42 ms
63,008 KB
testcase_12 AC 36 ms
52,428 KB
testcase_13 AC 42 ms
61,136 KB
testcase_14 AC 46 ms
63,484 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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
#================================================
N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

A.sort()

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