結果

問題 No.2667 Constrained Permutation
ユーザー timitimi
提出日時 2024-03-08 22:50:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 109,248 KB
最終ジャッジ日時 2024-09-29 20:20:35
合計ジャッジ時間 18,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,464 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 48 ms
60,928 KB
testcase_03 AC 54 ms
63,360 KB
testcase_04 AC 69 ms
71,296 KB
testcase_05 AC 46 ms
59,776 KB
testcase_06 AC 68 ms
71,168 KB
testcase_07 AC 46 ms
59,904 KB
testcase_08 AC 76 ms
71,552 KB
testcase_09 AC 72 ms
71,296 KB
testcase_10 AC 55 ms
62,720 KB
testcase_11 AC 70 ms
71,224 KB
testcase_12 AC 301 ms
81,772 KB
testcase_13 AC 74 ms
72,320 KB
testcase_14 AC 840 ms
109,248 KB
testcase_15 AC 419 ms
92,268 KB
testcase_16 AC 348 ms
89,676 KB
testcase_17 AC 140 ms
79,676 KB
testcase_18 AC 855 ms
97,744 KB
testcase_19 AC 774 ms
96,372 KB
testcase_20 AC 835 ms
97,608 KB
testcase_21 AC 527 ms
97,600 KB
testcase_22 AC 541 ms
96,688 KB
testcase_23 AC 543 ms
97,104 KB
testcase_24 AC 387 ms
84,576 KB
testcase_25 AC 743 ms
99,420 KB
testcase_26 AC 840 ms
98,256 KB
testcase_27 AC 835 ms
98,656 KB
testcase_28 AC 445 ms
96,244 KB
testcase_29 AC 419 ms
92,656 KB
testcase_30 AC 475 ms
103,888 KB
testcase_31 AC 298 ms
85,328 KB
testcase_32 AC 114 ms
78,108 KB
testcase_33 WA -
testcase_34 AC 288 ms
84,944 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 427 ms
88,984 KB
testcase_39 AC 71 ms
72,320 KB
testcase_40 AC 311 ms
84,940 KB
testcase_41 AC 514 ms
96,148 KB
testcase_42 AC 389 ms
86,436 KB
testcase_43 AC 591 ms
105,300 KB
testcase_44 AC 268 ms
81,608 KB
testcase_45 AC 74 ms
72,960 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)
print(max(0,max(q,s)-min(r,p)+1))
  
0