結果

問題 No.274 The Wall
ユーザー lloyzlloyz
提出日時 2023-09-24 15:35:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-07-17 16:21:37
合計ジャッジ時間 3,031 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 44 ms
58,436 KB
testcase_02 AC 46 ms
59,136 KB
testcase_03 AC 65 ms
68,864 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 50 ms
60,544 KB
testcase_11 AC 71 ms
71,040 KB
testcase_12 AC 88 ms
76,764 KB
testcase_13 AC 51 ms
61,824 KB
testcase_14 AC 71 ms
70,912 KB
testcase_15 AC 96 ms
76,920 KB
testcase_16 AC 71 ms
72,680 KB
testcase_17 AC 71 ms
72,448 KB
testcase_18 AC 71 ms
72,448 KB
testcase_19 AC 102 ms
76,516 KB
testcase_20 AC 101 ms
76,564 KB
testcase_21 AC 102 ms
76,896 KB
testcase_22 AC 73 ms
73,344 KB
testcase_23 AC 102 ms
76,552 KB
testcase_24 AC 105 ms
76,928 KB
testcase_25 AC 101 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
LR = []
for _ in range(n):
    l, r = map(int, input().split())
    r += 1
    l, r = min((l, r), (m - r, m - l))
    LR.append((l, r))
used = [False for _ in range(m)]
for l, r in sorted(LR):
    if any(used[i] for i in range(l, r)):
        l, r = m - r, m - l
    if any(used[i] for i in range(l, r)):
        print("NO")
        exit()
    for i in range(l, r):
        used[i] = True
print("YES")
0