結果

問題 No.274 The Wall
ユーザー H3PO4H3PO4
提出日時 2020-06-09 08:33:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,576 KB
最終ジャッジ日時 2024-06-22 02:38:39
合計ジャッジ時間 14,912 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 447 ms
44,372 KB
testcase_01 AC 447 ms
44,060 KB
testcase_02 AC 445 ms
44,440 KB
testcase_03 AC 464 ms
44,324 KB
testcase_04 AC 457 ms
44,188 KB
testcase_05 AC 482 ms
44,440 KB
testcase_06 AC 460 ms
44,448 KB
testcase_07 AC 463 ms
44,448 KB
testcase_08 AC 460 ms
44,076 KB
testcase_09 AC 467 ms
44,056 KB
testcase_10 AC 458 ms
44,544 KB
testcase_11 AC 459 ms
44,104 KB
testcase_12 AC 460 ms
44,060 KB
testcase_13 AC 472 ms
44,316 KB
testcase_14 AC 461 ms
44,448 KB
testcase_15 AC 477 ms
44,444 KB
testcase_16 AC 470 ms
44,568 KB
testcase_17 AC 449 ms
44,576 KB
testcase_18 AC 463 ms
44,172 KB
testcase_19 AC 462 ms
44,452 KB
testcase_20 AC 463 ms
44,316 KB
testcase_21 AC 462 ms
44,064 KB
testcase_22 AC 454 ms
44,316 KB
testcase_23 AC 463 ms
44,448 KB
testcase_24 AC 452 ms
44,192 KB
testcase_25 AC 454 ms
44,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M = map(int, input().split())
lst = [0] * (M + 1)
for i in range(N):
    l, r = map(int, input().split())
    lst[l] += 1
    lst[r + 1] -= 1

Acc = np.cumsum(lst[:-1])
flag = np.any(Acc + Acc[::-1] > 2)
print('NO' if flag else 'YES')
0