結果

問題 No.274 The Wall
ユーザー rlangevinrlangevin
提出日時 2024-02-04 11:49:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 625 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 77,092 KB
最終ジャッジ日時 2024-09-28 11:13:57
合計ジャッジ時間 4,343 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 42 ms
56,604 KB
testcase_02 AC 46 ms
59,264 KB
testcase_03 AC 63 ms
67,200 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 42 ms
52,096 KB
testcase_06 AC 45 ms
51,968 KB
testcase_07 AC 43 ms
51,840 KB
testcase_08 AC 43 ms
52,096 KB
testcase_09 AC 51 ms
59,264 KB
testcase_10 AC 50 ms
58,880 KB
testcase_11 AC 64 ms
67,520 KB
testcase_12 AC 170 ms
76,928 KB
testcase_13 AC 68 ms
61,056 KB
testcase_14 AC 101 ms
66,304 KB
testcase_15 AC 147 ms
76,800 KB
testcase_16 AC 71 ms
69,632 KB
testcase_17 AC 71 ms
70,400 KB
testcase_18 AC 69 ms
68,864 KB
testcase_19 AC 140 ms
76,800 KB
testcase_20 AC 180 ms
76,672 KB
testcase_21 AC 186 ms
76,728 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 193 ms
76,932 KB
testcase_25 AC 199 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def check(L1, R1, L2, R2):
    for i in range(M):
        if L1 <= i <= R1 and L2 <= i <= R2:
            return False
    return True

N, M = map(int, input().split())
pre0, pre1 = 1, 1
preL, preR = map(int, input().split())
for i in range(N - 1):
    L, R = map(int, input().split())
    dp0, dp1 = 0, 0
    if pre0:
        if check(L, R, preL, preR):
            dp0 = 1
        if check(M + 1 - R, M + 1 - L, preL, preR):
            dp1 = 1
            
    if pre1:
        if check(L, R, M + 1 - preR, M + 1 - preL):
            dp0 = 1
        if check(M + 1 - R, M + 1 - L, M + 1 - preR, M + 1 - preL):
            dp1 = 1
    pre0, pre1 = dp0, dp1
    preL, preR = L, R
    
print("YES") if pre0 or pre1 else print("NO")
0