結果

問題 No.1557 Binary Variable
ユーザー uiromochiuiromochi
提出日時 2021-06-25 23:03:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 468 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,512 KB
最終ジャッジ日時 2024-06-25 08:48:14
合計ジャッジ時間 15,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
39,040 KB
testcase_01 AC 286 ms
36,096 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 354 ms
38,480 KB
testcase_05 AC 350 ms
38,212 KB
testcase_06 AC 343 ms
37,352 KB
testcase_07 AC 348 ms
37,788 KB
testcase_08 AC 376 ms
39,824 KB
testcase_09 AC 389 ms
39,968 KB
testcase_10 AC 410 ms
40,296 KB
testcase_11 AC 416 ms
40,300 KB
testcase_12 AC 381 ms
39,772 KB
testcase_13 AC 418 ms
40,308 KB
testcase_14 AC 427 ms
40,444 KB
testcase_15 AC 412 ms
40,324 KB
testcase_16 AC 427 ms
40,384 KB
testcase_17 AC 423 ms
40,384 KB
testcase_18 AC 423 ms
40,328 KB
testcase_19 AC 431 ms
40,452 KB
testcase_20 AC 430 ms
40,512 KB
testcase_21 AC 427 ms
40,512 KB
testcase_22 AC 429 ms
40,448 KB
testcase_23 AC 427 ms
40,388 KB
testcase_24 AC 434 ms
40,388 KB
testcase_25 AC 430 ms
40,448 KB
testcase_26 AC 434 ms
40,452 KB
testcase_27 AC 431 ms
40,388 KB
testcase_28 AC 432 ms
40,384 KB
testcase_29 AC 428 ms
40,384 KB
testcase_30 AC 430 ms
40,388 KB
testcase_31 AC 423 ms
40,384 KB
testcase_32 AC 431 ms
40,388 KB
testcase_33 AC 432 ms
40,384 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from operator import itemgetter
input = sys.stdin.readline  # "\n"を含む

def solve(N, M, sect):
    sect.sort(key = itemgetter(1))
    temp = 0
    z = 0
    for s in sect:
        if temp < s[0]:
            temp = s[1]
            z += 1

    return N - z

def main():
    N, M = map(int, input().split())
    sect = [tuple(map(int, input().split())) for _ in range(M)]
    res = solve(N, M, sect)
    print(res)

if __name__ == "__main__":
    main()
0