結果

問題 No.274 The Wall
ユーザー pluto77pluto77
提出日時 2018-02-11 10:27:20
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 605 ms
コンパイル使用メモリ 76,948 KB
実行使用メモリ 79,092 KB
最終ジャッジ日時 2024-06-22 02:21:32
合計ジャッジ時間 3,640 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
75,532 KB
testcase_01 AC 101 ms
76,796 KB
testcase_02 AC 71 ms
77,352 KB
testcase_03 AC 87 ms
78,468 KB
testcase_04 AC 67 ms
75,696 KB
testcase_05 AC 63 ms
75,424 KB
testcase_06 AC 64 ms
75,516 KB
testcase_07 AC 65 ms
75,424 KB
testcase_08 AC 64 ms
75,540 KB
testcase_09 AC 66 ms
75,712 KB
testcase_10 AC 69 ms
77,064 KB
testcase_11 AC 99 ms
78,840 KB
testcase_12 AC 93 ms
78,740 KB
testcase_13 AC 76 ms
76,588 KB
testcase_14 AC 89 ms
78,872 KB
testcase_15 AC 90 ms
78,984 KB
testcase_16 AC 98 ms
78,760 KB
testcase_17 AC 99 ms
78,736 KB
testcase_18 AC 97 ms
78,600 KB
testcase_19 AC 93 ms
78,864 KB
testcase_20 AC 91 ms
78,724 KB
testcase_21 AC 87 ms
78,632 KB
testcase_22 AC 90 ms
79,092 KB
testcase_23 AC 91 ms
78,736 KB
testcase_24 AC 96 ms
78,912 KB
testcase_25 AC 89 ms
78,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki274

n,m=map(int,raw_input().split())
a=[0 for i in xrange(m)]
for i in xrange(n):
 l,r=map(int,raw_input().split())
 for j in xrange(l,r+1):
  a[j]+=1
  a[m-j-1]+=1
if max(a)<=2:
 print 'YES'
else:
 print 'NO'
0