結果

問題 No.2796 Small Matryoshka
ユーザー shotoyooshotoyoo
提出日時 2024-06-28 21:49:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 832 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 110,256 KB
最終ジャッジ日時 2024-06-28 21:49:13
合計ジャッジ時間 7,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
56,032 KB
testcase_01 AC 36 ms
55,568 KB
testcase_02 AC 35 ms
54,252 KB
testcase_03 AC 35 ms
55,892 KB
testcase_04 WA -
testcase_05 AC 122 ms
81,644 KB
testcase_06 AC 583 ms
105,832 KB
testcase_07 AC 36 ms
54,832 KB
testcase_08 AC 436 ms
99,328 KB
testcase_09 AC 653 ms
109,744 KB
testcase_10 AC 724 ms
110,256 KB
testcase_11 AC 709 ms
110,232 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

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)]
lr.sort(key=lambda item: (item[1], item[0]))
t = 0
res = 0
for l,r in lr:
    if l<t:
        continue
    t = r
    res += 1
print(n-res)
0