結果

問題 No.2667 Constrained Permutation
ユーザー timitimi
提出日時 2024-03-08 23:03:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 549 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 109,252 KB
最終ジャッジ日時 2024-09-29 20:33:55
合計ジャッジ時間 16,952 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,380 KB
testcase_01 AC 38 ms
52,752 KB
testcase_02 AC 48 ms
60,824 KB
testcase_03 AC 54 ms
63,912 KB
testcase_04 AC 72 ms
71,880 KB
testcase_05 AC 48 ms
60,064 KB
testcase_06 AC 70 ms
71,868 KB
testcase_07 AC 46 ms
60,164 KB
testcase_08 AC 70 ms
72,148 KB
testcase_09 AC 70 ms
71,644 KB
testcase_10 AC 53 ms
63,984 KB
testcase_11 AC 75 ms
71,620 KB
testcase_12 AC 278 ms
81,712 KB
testcase_13 AC 71 ms
72,920 KB
testcase_14 AC 734 ms
109,252 KB
testcase_15 AC 370 ms
92,388 KB
testcase_16 AC 286 ms
89,676 KB
testcase_17 AC 131 ms
79,736 KB
testcase_18 AC 761 ms
97,728 KB
testcase_19 AC 759 ms
96,028 KB
testcase_20 AC 798 ms
97,596 KB
testcase_21 AC 479 ms
97,640 KB
testcase_22 AC 482 ms
96,916 KB
testcase_23 AC 478 ms
97,372 KB
testcase_24 AC 341 ms
84,564 KB
testcase_25 AC 655 ms
99,416 KB
testcase_26 AC 766 ms
98,468 KB
testcase_27 AC 739 ms
98,776 KB
testcase_28 AC 396 ms
96,208 KB
testcase_29 AC 369 ms
93,156 KB
testcase_30 AC 435 ms
104,136 KB
testcase_31 AC 260 ms
84,816 KB
testcase_32 AC 106 ms
77,896 KB
testcase_33 WA -
testcase_34 AC 268 ms
84,816 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 379 ms
89,124 KB
testcase_39 AC 69 ms
74,200 KB
testcase_40 AC 285 ms
85,064 KB
testcase_41 AC 476 ms
96,264 KB
testcase_42 AC 353 ms
86,856 KB
testcase_43 AC 511 ms
105,416 KB
testcase_44 AC 241 ms
82,084 KB
testcase_45 AC 77 ms
73,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=[];c=10**10
for i in range(N):
  l,r=map(int, input().split())
  A.append((l,r))
  
A=sorted(A,key=lambda x: x[1])
A=sorted(A,key=lambda x: x[0])
#print(A)
B=[]
ll=-10**10;rr=10**10
for i in range(N):
  l,r=A[i]
  ll=max(ll,l-i)
  rr=min(rr,r-i)
p,q=ll,rr#
#print(ll,rr)
  
A=sorted(A,key=lambda x: x[0])
A=sorted(A,key=lambda x: x[1])
#print(A)
ll=-10**10;rr=10**10
for i in range(N):
  l,r=A[i]
  ll=max(ll,l-i)
  rr=min(rr,r-i)
r,s=ll,rr
#print(p,q,r,s)
d=0
if s<p:
  d=p-s-1
ans=max(0,max(q,s)-min(r,p)+1)
print(max(0,ans-d))
  
0