結果

問題 No.274 The Wall
ユーザー matsu7874matsu7874
提出日時 2015-08-28 22:38:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 325 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-18 15:12:26
合計ジャッジ時間 2,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 614 ms
11,008 KB
testcase_12 AC 37 ms
10,880 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 33 ms
10,880 KB
testcase_15 AC 35 ms
11,008 KB
testcase_16 AC 176 ms
11,136 KB
testcase_17 AC 160 ms
11,008 KB
testcase_18 AC 176 ms
11,008 KB
testcase_19 AC 37 ms
10,880 KB
testcase_20 AC 37 ms
10,880 KB
testcase_21 AC 37 ms
11,008 KB
testcase_22 AC 36 ms
10,880 KB
testcase_23 AC 38 ms
11,008 KB
testcase_24 AC 37 ms
10,880 KB
testcase_25 AC 37 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
L = []
R = []
for i in range(N):
    l, r = map(int, input().split())
    L.append(l)
    R.append(r)
w = [0 for i in range(M)]
for i in range(N):
    for j in range(L[i], R[i] + 1):
        w[j] += 1
if all(w[i] + w[M - i - 1] <= 2 for i in range(N)):
    print('YES')
else:
    print('NO')
0