結果

問題 No.2796 Small Matryoshka
ユーザー aa
提出日時 2024-06-28 22:28:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 111,616 KB
最終ジャッジ日時 2024-06-28 22:28:33
合計ジャッジ時間 8,691 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 31 ms
52,224 KB
testcase_02 AC 32 ms
51,712 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 136 ms
81,500 KB
testcase_06 AC 609 ms
106,752 KB
testcase_07 AC 34 ms
52,864 KB
testcase_08 AC 496 ms
99,776 KB
testcase_09 AC 713 ms
111,616 KB
testcase_10 AC 747 ms
111,488 KB
testcase_11 AC 733 ms
111,360 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
for i in range(n-1):
	if a[i][1]>a[i+1][0]:
		c+=1 
print(c)
0