結果

問題 No.274 The Wall
ユーザー ntudantuda
提出日時 2024-11-07 11:14:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 68,992 KB
最終ジャッジ日時 2024-11-07 11:14:33
合計ジャッジ時間 2,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 41 ms
57,600 KB
testcase_03 AC 62 ms
67,584 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 42 ms
58,112 KB
testcase_11 AC 63 ms
67,968 KB
testcase_12 AC 67 ms
68,608 KB
testcase_13 AC 44 ms
58,752 KB
testcase_14 AC 51 ms
61,696 KB
testcase_15 AC 64 ms
67,968 KB
testcase_16 AC 72 ms
67,840 KB
testcase_17 AC 62 ms
67,712 KB
testcase_18 AC 64 ms
68,096 KB
testcase_19 AC 66 ms
68,480 KB
testcase_20 AC 64 ms
68,480 KB
testcase_21 AC 63 ms
68,736 KB
testcase_22 AC 62 ms
68,096 KB
testcase_23 AC 64 ms
68,992 KB
testcase_24 AC 65 ms
68,864 KB
testcase_25 AC 64 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
X = [0] * (M + 1)
for _ in range(N):
    l, r = map(int, input().split())
    X[l] += 1
    X[r + 1] -= 1
    X[M - r - 1] += 1
    X[M - l] -= 1
Y = [0] * M
for i in range(M):
    Y[i] = X[i] + Y[i - 1]
    if Y[i] > 2:
        print("NO")
        exit()
print("YES")
0