結果

問題 No.1557 Binary Variable
ユーザー prussian_coderprussian_coder
提出日時 2022-01-15 17:58:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 105,100 KB
最終ジャッジ日時 2024-11-21 20:48:21
合計ジャッジ時間 18,739 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
94,844 KB
testcase_01 AC 288 ms
102,272 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 414 ms
95,992 KB
testcase_05 AC 374 ms
95,952 KB
testcase_06 AC 345 ms
95,948 KB
testcase_07 AC 349 ms
96,260 KB
testcase_08 AC 406 ms
96,028 KB
testcase_09 AC 427 ms
96,056 KB
testcase_10 AC 457 ms
96,192 KB
testcase_11 AC 464 ms
95,980 KB
testcase_12 AC 409 ms
96,068 KB
testcase_13 AC 454 ms
95,980 KB
testcase_14 AC 464 ms
95,484 KB
testcase_15 AC 459 ms
96,000 KB
testcase_16 AC 458 ms
96,004 KB
testcase_17 AC 458 ms
95,912 KB
testcase_18 AC 464 ms
95,900 KB
testcase_19 AC 475 ms
96,280 KB
testcase_20 AC 467 ms
95,784 KB
testcase_21 AC 470 ms
95,608 KB
testcase_22 AC 480 ms
96,440 KB
testcase_23 AC 473 ms
95,600 KB
testcase_24 AC 520 ms
103,956 KB
testcase_25 AC 514 ms
105,100 KB
testcase_26 AC 504 ms
102,232 KB
testcase_27 AC 507 ms
101,492 KB
testcase_28 AC 494 ms
100,028 KB
testcase_29 AC 503 ms
98,672 KB
testcase_30 AC 497 ms
99,004 KB
testcase_31 AC 498 ms
98,360 KB
testcase_32 AC 500 ms
98,688 KB
testcase_33 AC 471 ms
95,724 KB
testcase_34 AC 38 ms
52,388 KB
testcase_35 AC 39 ms
53,608 KB
testcase_36 AC 38 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=[[int(x) for x in input().split()] for _ in range(K)]
A=sorted(A, key=lambda x: x[1])
ans=0
p=0
for i in range(K):
    if A[i][0]>p:
        ans+=1
        p=A[i][1]
print(N-ans)        
0