結果

問題 No.1557 Binary Variable
ユーザー ch1channnch1channn
提出日時 2022-12-13 16:38:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 473 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,012 KB
最終ジャッジ日時 2024-11-07 11:32:48
合計ジャッジ時間 17,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
97,628 KB
testcase_01 AC 192 ms
96,896 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 AC 324 ms
98,944 KB
testcase_05 AC 280 ms
99,252 KB
testcase_06 AC 265 ms
98,816 KB
testcase_07 AC 276 ms
99,068 KB
testcase_08 AC 334 ms
98,816 KB
testcase_09 AC 347 ms
98,768 KB
testcase_10 AC 379 ms
98,816 KB
testcase_11 AC 374 ms
99,068 KB
testcase_12 AC 327 ms
98,816 KB
testcase_13 AC 381 ms
99,092 KB
testcase_14 AC 396 ms
98,644 KB
testcase_15 AC 383 ms
98,688 KB
testcase_16 AC 405 ms
98,944 KB
testcase_17 AC 385 ms
98,560 KB
testcase_18 AC 383 ms
98,596 KB
testcase_19 AC 389 ms
98,176 KB
testcase_20 AC 393 ms
98,964 KB
testcase_21 AC 393 ms
98,772 KB
testcase_22 AC 397 ms
98,344 KB
testcase_23 AC 401 ms
98,304 KB
testcase_24 AC 404 ms
98,176 KB
testcase_25 AC 398 ms
98,432 KB
testcase_26 AC 391 ms
98,076 KB
testcase_27 AC 400 ms
98,688 KB
testcase_28 AC 418 ms
109,012 KB
testcase_29 AC 443 ms
107,804 KB
testcase_30 AC 450 ms
108,160 KB
testcase_31 AC 473 ms
107,392 KB
testcase_32 AC 442 ms
108,032 KB
testcase_33 AC 396 ms
98,304 KB
testcase_34 AC 41 ms
52,352 KB
testcase_35 AC 40 ms
52,224 KB
testcase_36 AC 41 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
from sys import stdin

readline = stdin.readline

N, M = map(int, readline().split())
LR = [list(map(int, readline().split())) for _ in range(M)]

result = N
t = -1
for L, R in sorted(LR, key=lambda x: x[1]):
    if L <= t <= R:
        continue
    result -= 1
    t = R
print(result)
0