結果

問題 No.274 The Wall
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-08-28 23:18:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,326 bytes
コンパイル時間 2,924 ms
コンパイル使用メモリ 80,428 KB
実行使用メモリ 56,780 KB
最終ジャッジ日時 2024-07-18 15:24:26
合計ジャッジ時間 7,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
41,232 KB
testcase_01 AC 114 ms
41,280 KB
testcase_02 AC 109 ms
40,408 KB
testcase_03 AC 110 ms
41,736 KB
testcase_04 AC 96 ms
41,308 KB
testcase_05 AC 94 ms
41,348 KB
testcase_06 AC 95 ms
41,496 KB
testcase_07 AC 98 ms
41,188 KB
testcase_08 AC 116 ms
41,512 KB
testcase_09 AC 104 ms
39,936 KB
testcase_10 AC 98 ms
41,464 KB
testcase_11 AC 109 ms
41,924 KB
testcase_12 AC 178 ms
45,756 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 100 ms
41,400 KB
testcase_17 AC 109 ms
41,204 KB
testcase_18 AC 108 ms
40,180 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 163 ms
42,612 KB
testcase_23 AC 163 ms
42,904 KB
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
		boolean[] f = new boolean[m];
		for (int i=0; i<n; i++) {
			int l = in.nextInt();
			int r = in.nextInt();
			if (l >= m/2) {
				int t = l;
				l = m - r - 1; r = m - t - 1;
			}

			// trace(f);

			boolean flag = true;
			for (int j=l; j<=r; j++) {
				if (f[j]) {
					flag = false;
					break;
				}
			}

			if (flag) {
				for (int j=l; j<=r; j++) {
					f[j] = true;
				}
			} else {
				int t = l;
				l = m - r - 1; r = m - t - 1;
				boolean flag2 = true;
				for (int j=l; j<=r; j++) {
					if (f[j]) {
						flag2 = false;
						break;
					}
				}

				if (flag2) {
					for (int j=l; j<=r; j++) {
						f[j] = true;
					}
				} else {
					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