結果
問題 | No.2667 Constrained Permutation |
ユーザー | timi |
提出日時 | 2024-03-08 23:40:21 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 538 bytes |
コンパイル時間 | 306 ms |
コンパイル使用メモリ | 82,668 KB |
実行使用メモリ | 109,896 KB |
最終ジャッジ日時 | 2024-09-29 20:51:54 |
合計ジャッジ時間 | 16,190 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
53,212 KB |
testcase_01 | AC | 33 ms
53,688 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 384 ms
96,008 KB |
testcase_29 | AC | 361 ms
92,416 KB |
testcase_30 | AC | 408 ms
103,764 KB |
testcase_31 | AC | 250 ms
84,560 KB |
testcase_32 | AC | 98 ms
77,596 KB |
testcase_33 | AC | 472 ms
102,464 KB |
testcase_34 | AC | 253 ms
84,304 KB |
testcase_35 | AC | 318 ms
91,088 KB |
testcase_36 | AC | 293 ms
87,884 KB |
testcase_37 | AC | 322 ms
90,700 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 277 ms
84,684 KB |
testcase_41 | AC | 458 ms
96,136 KB |
testcase_42 | AC | 366 ms
86,600 KB |
testcase_43 | AC | 558 ms
104,656 KB |
testcase_44 | AC | 234 ms
81,920 KB |
testcase_45 | AC | 66 ms
73,452 KB |
ソースコード
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 p<=q or r<=s: print(max(q,s)-min(r,p)+1) else: print(0)