結果

問題 No.1242 高橋君とすごろく
ユーザー CuriousFairy315CuriousFairy315
提出日時 2020-10-02 21:42:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 727 bytes
コンパイル時間 2,445 ms
コンパイル使用メモリ 78,004 KB
実行使用メモリ 41,752 KB
最終ジャッジ日時 2024-07-20 02:42:11
合計ジャッジ時間 7,733 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,212 KB
testcase_01 AC 133 ms
41,060 KB
testcase_02 AC 130 ms
41,112 KB
testcase_03 AC 128 ms
40,952 KB
testcase_04 AC 126 ms
41,140 KB
testcase_05 AC 120 ms
40,976 KB
testcase_06 AC 125 ms
41,164 KB
testcase_07 AC 128 ms
41,192 KB
testcase_08 AC 113 ms
39,588 KB
testcase_09 AC 113 ms
39,868 KB
testcase_10 AC 134 ms
41,220 KB
testcase_11 AC 141 ms
41,112 KB
testcase_12 AC 139 ms
41,500 KB
testcase_13 AC 142 ms
41,552 KB
testcase_14 AC 134 ms
41,212 KB
testcase_15 AC 143 ms
41,548 KB
testcase_16 AC 132 ms
40,800 KB
testcase_17 AC 132 ms
41,164 KB
testcase_18 AC 147 ms
41,000 KB
testcase_19 AC 135 ms
41,012 KB
testcase_20 AC 130 ms
40,996 KB
testcase_21 AC 129 ms
41,384 KB
testcase_22 AC 148 ms
41,496 KB
testcase_23 AC 144 ms
41,448 KB
testcase_24 AC 134 ms
41,320 KB
testcase_25 AC 130 ms
41,316 KB
testcase_26 AC 143 ms
41,344 KB
testcase_27 AC 120 ms
41,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {

	public static void main(String[] args) {
		try (Scanner sc = new Scanner(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();
			HashSet<Long> set = new HashSet<>();
			for (long i : A) set.add(i);
			boolean No = false;
			boolean[] test = new boolean[30];
			for (int i = 20;i >= 0;-- i) {
				test[i] = set.contains((long)i);
				for (int j = 1;j <= 3;++ j) test[i] |= test[i + j] & test[i + 7 - j];
			}
			No |= test[1];
			for (long i : A) if (i > 20) for (int j = 0;j < 3;++ j) No |= set.contains(i + 2 * j + 1);
			out.println(No ? "No" : "Yes");
		}
	}

}
0