結果

問題 No.1557 Binary Variable
ユーザー mesame3993mesame3993
提出日時 2021-10-01 14:36:20
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 259 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 179,456 KB
最終ジャッジ日時 2024-07-19 02:06:30
合計ジャッジ時間 15,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 37 ms
51,328 KB
testcase_04 AC 343 ms
98,048 KB
testcase_05 AC 345 ms
98,168 KB
testcase_06 AC 361 ms
98,304 KB
testcase_07 AC 366 ms
98,432 KB
testcase_08 AC 439 ms
98,176 KB
testcase_09 AC 459 ms
98,240 KB
testcase_10 AC 472 ms
98,216 KB
testcase_11 AC 503 ms
98,304 KB
testcase_12 AC 399 ms
98,028 KB
testcase_13 AC 449 ms
98,176 KB
testcase_14 AC 1,121 ms
105,192 KB
testcase_15 AC 470 ms
98,304 KB
testcase_16 AC 910 ms
103,076 KB
testcase_17 AC 684 ms
100,440 KB
testcase_18 AC 591 ms
99,784 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
lis = [list(map(int, input().split())) for _ in range(m)]
lis.sort(key=lambda x:x[1])
B = [1] * n
for i in range(m):
	for j in range(lis[i][0]-1, lis[i][-1]):
		if B[j] == 0:
			break
	else:
		B[lis[i][-1]-1] = 0
print(sum(B))
0