結果

問題 No.274 The Wall
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-29 00:51:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 876 bytes
コンパイル時間 3,655 ms
コンパイル使用メモリ 80,200 KB
実行使用メモリ 57,748 KB
最終ジャッジ日時 2024-06-22 02:03:31
合計ジャッジ時間 8,093 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,668 KB
testcase_01 AC 115 ms
54,000 KB
testcase_02 AC 116 ms
54,244 KB
testcase_03 AC 178 ms
56,464 KB
testcase_04 AC 119 ms
53,752 KB
testcase_05 AC 106 ms
54,248 KB
testcase_06 AC 103 ms
52,824 KB
testcase_07 AC 115 ms
54,124 KB
testcase_08 AC 103 ms
52,912 KB
testcase_09 AC 102 ms
54,100 KB
testcase_10 AC 117 ms
54,300 KB
testcase_11 AC 208 ms
57,564 KB
testcase_12 AC 194 ms
57,232 KB
testcase_13 AC 149 ms
54,268 KB
testcase_14 AC 179 ms
56,784 KB
testcase_15 AC 185 ms
57,052 KB
testcase_16 AC 192 ms
57,212 KB
testcase_17 AC 187 ms
57,004 KB
testcase_18 AC 190 ms
56,576 KB
testcase_19 AC 187 ms
56,852 KB
testcase_20 AC 191 ms
57,704 KB
testcase_21 AC 191 ms
57,292 KB
testcase_22 AC 189 ms
57,432 KB
testcase_23 AC 189 ms
57,748 KB
testcase_24 AC 191 ms
57,416 KB
testcase_25 AC 193 ms
57,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.awt.geom.*;
import java.math.*;

public class No0274 {

	static final Scanner in = new Scanner(System.in);
	static final PrintWriter out = new PrintWriter(System.out,false);

	static void solve() {
		int n = in.nextInt();
		int m = in.nextInt();
		int[] cnt = new int[m];
		for (int i=0; i<n; i++) {
			int l = in.nextInt(), r = in.nextInt();
			for (int j=l; j<=r; j++) {
				cnt[j]++; cnt[m-1-j]++;
			}
		}

		for (int i=0; i<m; i++) {
			if (cnt[i] > 2) {
				out.println("NO");
				return;
			}
		}
		out.println("YES");
	}

	public static void main(String[] args) {
		long start = System.currentTimeMillis();

		solve();
		out.flush();

		long end = System.currentTimeMillis();
		//trace(end-start + "ms");
		in.close();
		out.close();
	}

	static void trace(Object... o) { System.out.println(Arrays.deepToString(o));}
}
0