結果

問題 No.2667 Constrained Permutation
ユーザー ゼットゼット
提出日時 2024-03-08 21:46:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 1,137 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 92,552 KB
最終ジャッジ日時 2024-09-29 19:27:07
合計ジャッジ時間 8,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,772 KB
testcase_01 AC 36 ms
52,024 KB
testcase_02 AC 43 ms
55,000 KB
testcase_03 AC 50 ms
62,648 KB
testcase_04 AC 62 ms
70,092 KB
testcase_05 AC 41 ms
54,572 KB
testcase_06 AC 62 ms
68,980 KB
testcase_07 AC 42 ms
54,592 KB
testcase_08 AC 63 ms
69,948 KB
testcase_09 AC 65 ms
70,888 KB
testcase_10 AC 47 ms
56,544 KB
testcase_11 AC 63 ms
70,180 KB
testcase_12 AC 122 ms
81,624 KB
testcase_13 AC 65 ms
71,204 KB
testcase_14 AC 231 ms
91,400 KB
testcase_15 AC 197 ms
88,064 KB
testcase_16 AC 157 ms
83,324 KB
testcase_17 AC 95 ms
79,372 KB
testcase_18 AC 245 ms
91,648 KB
testcase_19 AC 246 ms
91,392 KB
testcase_20 AC 244 ms
92,420 KB
testcase_21 AC 238 ms
92,552 KB
testcase_22 AC 238 ms
91,500 KB
testcase_23 AC 239 ms
92,032 KB
testcase_24 AC 141 ms
81,988 KB
testcase_25 AC 204 ms
88,196 KB
testcase_26 AC 241 ms
91,780 KB
testcase_27 AC 242 ms
91,660 KB
testcase_28 AC 194 ms
87,672 KB
testcase_29 AC 182 ms
85,884 KB
testcase_30 AC 205 ms
87,428 KB
testcase_31 AC 148 ms
82,420 KB
testcase_32 AC 82 ms
77,544 KB
testcase_33 WA -
testcase_34 AC 154 ms
84,092 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 190 ms
87,420 KB
testcase_39 AC 63 ms
70,228 KB
testcase_40 AC 153 ms
84,856 KB
testcase_41 AC 208 ms
91,384 KB
testcase_42 AC 155 ms
83,640 KB
testcase_43 AC 192 ms
87,796 KB
testcase_44 AC 122 ms
81,396 KB
testcase_45 AC 62 ms
70,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
l=0
r=10**10
L=[]
R=[]
for i in range(N):
  a,b=map(int,input().split())
  L.append(a-1)
  R.append(b-1)
L.sort()
R.sort()
for i in range(N):
  l=max(l,L[i]-i)
for i in range(N):
  r=min(r,R[i]-i)
if l<=r:
  print(r-l+1)
else:
  print(0)
0