結果

問題 No.1557 Binary Variable
ユーザー ああいいああいい
提出日時 2021-12-26 10:54:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,004 ms / 2,000 ms
コード長 265 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,396 KB
最終ジャッジ日時 2024-09-22 18:00:45
合計ジャッジ時間 35,262 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 747 ms
37,504 KB
testcase_01 AC 740 ms
34,176 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 856 ms
36,104 KB
testcase_05 AC 864 ms
36,352 KB
testcase_06 AC 848 ms
35,108 KB
testcase_07 AC 842 ms
35,796 KB
testcase_08 AC 926 ms
37,704 KB
testcase_09 AC 955 ms
38,100 KB
testcase_10 AC 982 ms
38,176 KB
testcase_11 AC 988 ms
38,180 KB
testcase_12 AC 910 ms
38,032 KB
testcase_13 AC 976 ms
38,188 KB
testcase_14 AC 950 ms
38,292 KB
testcase_15 AC 998 ms
38,204 KB
testcase_16 AC 978 ms
38,264 KB
testcase_17 AC 978 ms
38,260 KB
testcase_18 AC 949 ms
38,252 KB
testcase_19 AC 977 ms
38,268 KB
testcase_20 AC 977 ms
38,144 KB
testcase_21 AC 965 ms
38,264 KB
testcase_22 AC 976 ms
38,268 KB
testcase_23 AC 946 ms
38,140 KB
testcase_24 AC 982 ms
38,364 KB
testcase_25 AC 970 ms
38,396 KB
testcase_26 AC 974 ms
38,268 KB
testcase_27 AC 955 ms
38,140 KB
testcase_28 AC 966 ms
38,364 KB
testcase_29 AC 972 ms
38,380 KB
testcase_30 AC 983 ms
38,076 KB
testcase_31 AC 976 ms
38,268 KB
testcase_32 AC 982 ms
38,268 KB
testcase_33 AC 1,004 ms
38,368 KB
testcase_34 AC 30 ms
10,880 KB
testcase_35 AC 28 ms
10,752 KB
testcase_36 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())

dat = [0] * M
for _ in range(M):
    l,r = map(int,input().split())
    dat[_] = (r,l)
dat.sort(reverse = True)
count = 0
now = 0
while len(dat):
    r,l = dat.pop()
    if l > now:
        count += 1
        now = r
print(N - count)
0