結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,944 KB
testcase_01 AC 34 ms
53,144 KB
testcase_02 AC 45 ms
60,508 KB
testcase_03 AC 51 ms
64,728 KB
testcase_04 AC 65 ms
71,272 KB
testcase_05 AC 44 ms
59,732 KB
testcase_06 AC 64 ms
72,380 KB
testcase_07 AC 42 ms
60,124 KB
testcase_08 AC 65 ms
72,440 KB
testcase_09 AC 65 ms
73,136 KB
testcase_10 AC 50 ms
62,992 KB
testcase_11 AC 64 ms
72,204 KB
testcase_12 AC 268 ms
82,096 KB
testcase_13 AC 72 ms
73,296 KB
testcase_14 AC 733 ms
109,636 KB
testcase_15 AC 372 ms
92,192 KB
testcase_16 AC 285 ms
89,796 KB
testcase_17 AC 134 ms
80,064 KB
testcase_18 AC 751 ms
97,600 KB
testcase_19 AC 684 ms
96,064 KB
testcase_20 AC 729 ms
97,600 KB
testcase_21 AC 463 ms
97,556 KB
testcase_22 AC 465 ms
96,808 KB
testcase_23 AC 467 ms
97,296 KB
testcase_24 AC 332 ms
84,436 KB
testcase_25 AC 646 ms
99,256 KB
testcase_26 AC 916 ms
98,380 KB
testcase_27 AC 735 ms
98,900 KB
testcase_28 AC 396 ms
96,416 KB
testcase_29 AC 372 ms
92,716 KB
testcase_30 AC 440 ms
104,272 KB
testcase_31 AC 271 ms
84,820 KB
testcase_32 AC 111 ms
77,764 KB
testcase_33 WA -
testcase_34 AC 267 ms
84,944 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 378 ms
89,136 KB
testcase_39 AC 70 ms
73,728 KB
testcase_40 AC 278 ms
84,944 KB
testcase_41 AC 472 ms
96,028 KB
testcase_42 AC 352 ms
86,736 KB
testcase_43 AC 506 ms
105,288 KB
testcase_44 AC 238 ms
81,932 KB
testcase_45 AC 77 ms
73,596 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,s-p+1))
  
0