結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,744 KB
testcase_01 AC 32 ms
53,248 KB
testcase_02 AC 42 ms
60,980 KB
testcase_03 AC 47 ms
64,120 KB
testcase_04 AC 60 ms
71,748 KB
testcase_05 AC 39 ms
61,108 KB
testcase_06 AC 63 ms
71,420 KB
testcase_07 AC 42 ms
59,604 KB
testcase_08 AC 63 ms
72,488 KB
testcase_09 AC 64 ms
72,840 KB
testcase_10 AC 47 ms
63,484 KB
testcase_11 AC 63 ms
72,160 KB
testcase_12 AC 269 ms
81,792 KB
testcase_13 AC 70 ms
73,960 KB
testcase_14 AC 767 ms
109,640 KB
testcase_15 AC 369 ms
92,220 KB
testcase_16 AC 277 ms
90,060 KB
testcase_17 AC 124 ms
79,684 KB
testcase_18 AC 762 ms
97,600 KB
testcase_19 AC 689 ms
96,220 KB
testcase_20 AC 735 ms
97,864 KB
testcase_21 AC 458 ms
97,572 KB
testcase_22 AC 465 ms
96,980 KB
testcase_23 AC 471 ms
96,952 KB
testcase_24 AC 332 ms
84,696 KB
testcase_25 AC 648 ms
99,296 KB
testcase_26 AC 750 ms
98,252 KB
testcase_27 AC 750 ms
98,648 KB
testcase_28 AC 392 ms
96,164 KB
testcase_29 AC 367 ms
92,756 KB
testcase_30 AC 413 ms
103,888 KB
testcase_31 AC 261 ms
85,072 KB
testcase_32 AC 98 ms
77,840 KB
testcase_33 WA -
testcase_34 AC 254 ms
85,452 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 391 ms
88,872 KB
testcase_39 AC 70 ms
74,028 KB
testcase_40 AC 294 ms
85,200 KB
testcase_41 AC 445 ms
96,140 KB
testcase_42 AC 346 ms
86,388 KB
testcase_43 AC 511 ms
105,552 KB
testcase_44 AC 242 ms
81,728 KB
testcase_45 AC 66 ms
74,020 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**20;rr=10**20
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**20;rr=10**20
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)
if max(p,q)>min(r,s):
  print(0)
else:
  print(max(0,max(q,s)-min(r,p)+1))
  
0