結果

問題 No.2796 Small Matryoshka
ユーザー shobonvipshobonvip
提出日時 2024-06-26 23:35:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,127 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,676 KB
最終ジャッジ日時 2024-06-26 23:36:05
合計ジャッジ時間 11,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 225 ms
80,768 KB
testcase_06 AC 1,066 ms
98,672 KB
testcase_07 AC 44 ms
53,120 KB
testcase_08 AC 821 ms
92,536 KB
testcase_09 AC 983 ms
100,352 KB
testcase_10 AC 1,017 ms
100,604 KB
testcase_11 AC 1,127 ms
100,676 KB
testcase_12 AC 414 ms
85,936 KB
testcase_13 AC 111 ms
77,252 KB
testcase_14 AC 374 ms
86,316 KB
testcase_15 AC 156 ms
79,360 KB
testcase_16 AC 217 ms
81,920 KB
testcase_17 AC 796 ms
89,872 KB
testcase_18 AC 869 ms
93,196 KB
testcase_19 AC 284 ms
82,432 KB
testcase_20 AC 375 ms
83,248 KB
testcase_21 AC 773 ms
89,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
event = []
for i in range(n):
	l, r = map(int,input().split())
	event.append((l * 2, +1))
	event.append((r * 2 - 1, -1))

event.sort()
ans = 0
tmp = 0
for [c, d] in event:
	tmp += d
	ans = max(ans, tmp)
print(ans - 1)
0