結果

問題 No.2796 Small Matryoshka
ユーザー shotoyooshotoyoo
提出日時 2024-06-28 21:59:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,062 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 136,044 KB
最終ジャッジ日時 2024-06-28 21:59:46
合計ジャッジ時間 10,626 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,624 KB
testcase_01 AC 42 ms
55,740 KB
testcase_02 AC 53 ms
55,380 KB
testcase_03 AC 39 ms
54,572 KB
testcase_04 AC 38 ms
54,988 KB
testcase_05 AC 187 ms
84,528 KB
testcase_06 AC 995 ms
128,568 KB
testcase_07 AC 43 ms
55,632 KB
testcase_08 AC 790 ms
117,728 KB
testcase_09 AC 918 ms
136,044 KB
testcase_10 AC 971 ms
135,716 KB
testcase_11 AC 1,062 ms
135,840 KB
testcase_12 AC 397 ms
102,044 KB
testcase_13 AC 103 ms
79,572 KB
testcase_14 AC 350 ms
99,652 KB
testcase_15 AC 152 ms
82,276 KB
testcase_16 AC 203 ms
87,236 KB
testcase_17 AC 708 ms
112,688 KB
testcase_18 AC 818 ms
117,428 KB
testcase_19 AC 262 ms
88,620 KB
testcase_20 AC 361 ms
94,060 KB
testcase_21 AC 734 ms
112,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, random
input = lambda : sys.stdin.readline().rstrip()


write = lambda x: sys.stdout.write(x+"\n"); writef = lambda x: print("{:.12f}".format(x))
debug = lambda x: sys.stderr.write(x+"\n")
YES="Yes"; NO="No"; pans = lambda v: print(YES if v else NO); INF=10**18
LI = lambda v=0: list(map(lambda i: int(i)-v, input().split())); II=lambda : int(input()); SI=lambda : [ord(c)-ord("a") for c in input()]
def debug(_l_):
    for s in _l_.split():
        print(f"{s}={eval(s)}", end=" ")
    print()
def dlist(*l, fill=0):
    if len(l)==1:
        return [fill]*l[0]
    ll = l[1:]
    return [dlist(*ll, fill=fill) for _ in range(l[0])]

n = int(input())
lr = [LI() for _ in range(n)]
lst = []
for l,r in lr:
    lst.append((l,1))
    lst.append((r,-1))
lst.sort()
res = 0
ans = 0
for v,c in lst:
    res += c
    ans = max(ans, res)
print(ans-1)
0