結果

問題 No.2796 Small Matryoshka
ユーザー aa
提出日時 2024-06-28 22:35:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 111,408 KB
最終ジャッジ日時 2024-06-28 22:35:13
合計ジャッジ時間 9,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 169 ms
81,352 KB
testcase_06 AC 776 ms
106,932 KB
testcase_07 AC 43 ms
52,480 KB
testcase_08 AC 579 ms
99,840 KB
testcase_09 AC 917 ms
110,836 KB
testcase_10 AC 905 ms
111,408 KB
testcase_11 AC 864 ms
111,032 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 #

n=int(input())
a=sorted([list(map(int,input().split())) for i in range(n)],key=lambda item: (item[0], -item[1]))
c=0
T=True
for i in range(n-1):
	if a[i][1]>a[i+1][0]:
		if T and i!=n-2 and a[i][1]<a[i+2][0]:
			T=False
			continue
		c+=1 
		T=True
print(c)
0