結果

問題 No.274 The Wall
ユーザー roarisroaris
提出日時 2019-12-06 14:42:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 942 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 74,112 KB
最終ジャッジ日時 2024-06-02 09:25:52
合計ジャッジ時間 3,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 41 ms
58,880 KB
testcase_02 AC 52 ms
60,800 KB
testcase_03 AC 61 ms
67,072 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 34 ms
51,840 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 42 ms
59,520 KB
testcase_10 AC 43 ms
59,520 KB
testcase_11 AC 65 ms
68,992 KB
testcase_12 AC 200 ms
74,112 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 69 ms
69,760 KB
testcase_17 AC 76 ms
70,656 KB
testcase_18 AC 73 ms
69,888 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 116 ms
72,448 KB
testcase_23 AC 115 ms
73,728 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
LR = [tuple(map(int, input().split())) for _ in range(N)]
locked = [False]*N

for i in range(M):
    flag = False
    
    for j in range(N):
        Lj, Rj = LR[j]
        
        if Lj<=i<=Rj:
            if not flag:
                flag = True
            else:
                if locked[j]:
                    print('NO')
                    exit()
                else:
                    Lj, Rj = M-1-Rj, M-1-Lj
                    
                    if Lj<=i<=Rj:
                        print('NO')
                        exit()
                    
                    LR[j] = (Lj, Rj)
                    locked[j] = True

for i in range(N):
    flag = False
    
    for j in range(N):
        Lj, Rj = LR[j]
        
        if Lj<=i<=Rj:
            if not flag:
                flag = True
            else:
                print('NO')
                exit()
                
print('YES')
0