結果

問題 No.1282 Display Elements
ユーザー timitimi
提出日時 2020-11-16 16:49:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 964 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 100,212 KB
最終ジャッジ日時 2024-07-23 01:34:26
合計ジャッジ時間 6,908 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 47 ms
61,056 KB
testcase_11 AC 50 ms
61,440 KB
testcase_12 AC 41 ms
57,728 KB
testcase_13 AC 47 ms
59,520 KB
testcase_14 AC 49 ms
61,696 KB
testcase_15 AC 530 ms
100,212 KB
testcase_16 AC 169 ms
85,120 KB
testcase_17 AC 396 ms
98,232 KB
testcase_18 AC 215 ms
87,808 KB
testcase_19 AC 944 ms
96,512 KB
testcase_20 AC 964 ms
97,664 KB
testcase_21 AC 597 ms
98,200 KB
testcase_22 AC 596 ms
97,536 KB
testcase_23 AC 594 ms
98,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))
B=list(map(int, input().split()))
A=sorted(A)
import bisect
D=[]
ans=0
for i in range(N):
  bisect.insort_left(D,B[i])
  d=bisect.bisect_left(D,A[i])
  ans+=d
print(ans)
0