結果

問題 No.1242 高橋君とすごろく
ユーザー ks2mks2m
提出日時 2020-10-02 21:53:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 77,660 KB
実行使用メモリ 41,852 KB
最終ジャッジ日時 2024-07-20 02:43:22
合計ジャッジ時間 7,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,268 KB
testcase_01 AC 135 ms
41,272 KB
testcase_02 AC 136 ms
41,300 KB
testcase_03 AC 135 ms
41,272 KB
testcase_04 AC 138 ms
41,544 KB
testcase_05 AC 135 ms
41,460 KB
testcase_06 AC 135 ms
41,160 KB
testcase_07 AC 139 ms
41,412 KB
testcase_08 AC 135 ms
41,284 KB
testcase_09 AC 136 ms
41,344 KB
testcase_10 AC 153 ms
41,204 KB
testcase_11 AC 153 ms
41,584 KB
testcase_12 AC 147 ms
41,408 KB
testcase_13 AC 149 ms
41,196 KB
testcase_14 AC 150 ms
41,304 KB
testcase_15 AC 149 ms
41,376 KB
testcase_16 AC 152 ms
41,256 KB
testcase_17 AC 151 ms
41,416 KB
testcase_18 AC 150 ms
41,540 KB
testcase_19 AC 148 ms
41,276 KB
testcase_20 AC 150 ms
41,800 KB
testcase_21 AC 151 ms
41,140 KB
testcase_22 AC 145 ms
41,472 KB
testcase_23 AC 145 ms
41,684 KB
testcase_24 AC 148 ms
41,384 KB
testcase_25 AC 146 ms
41,400 KB
testcase_26 AC 150 ms
41,852 KB
testcase_27 AC 136 ms
41,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		int k = sc.nextInt();
		long[] a = new long[k];
		for (int i = 0; i < k; i++) {
			a[i] = sc.nextLong();
		}
		sc.close();

		boolean[] b = new boolean[30];
		for (int i = 0; i < k; i++) {
			if (a[i] < 25) {
				int c = (int) a[i];
				b[c] = true;
			} else {
				int start = i;
				if (i > 0 && a[i - 1] > 20) {
					start--;
				}
				for (int j = start; j < k; j++) {
					for (int j2 = j + 1; j2 < k; j2++) {
						if (a[j] + 1 == a[j2] || a[j] + 3 == a[j2] || a[j] + 5 == a[j2]) {
							System.out.println("No");
							return;
						}
					}
				}
				break;
			}
		}
		for (int i = 24; i >= 0; i--) {
			if (b[i + 1] && b[i + 6]) {
				b[i] = true;
			}
			if (b[i + 2] && b[i + 5]) {
				b[i] = true;
			}
			if (b[i + 3] && b[i + 4]) {
				b[i] = true;
			}
		}
		if (b[1]) {
			System.out.println("No");
		} else {
			System.out.println("Yes");
		}
	}
}
0