結果

問題 No.1242 高橋君とすごろく
ユーザー wolgnikwolgnik
提出日時 2020-10-02 23:27:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 2,000 ms
コード長 742 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 75,524 KB
最終ジャッジ日時 2024-07-20 02:51:11
合計ジャッジ時間 3,524 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
51,456 KB
testcase_02 AC 45 ms
60,032 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 44 ms
58,112 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 39 ms
52,352 KB
testcase_09 AC 39 ms
52,224 KB
testcase_10 AC 314 ms
75,264 KB
testcase_11 AC 59 ms
61,440 KB
testcase_12 AC 313 ms
75,520 KB
testcase_13 AC 58 ms
61,312 KB
testcase_14 AC 311 ms
75,524 KB
testcase_15 AC 57 ms
60,928 KB
testcase_16 AC 65 ms
62,336 KB
testcase_17 AC 44 ms
58,496 KB
testcase_18 AC 42 ms
58,112 KB
testcase_19 AC 45 ms
58,624 KB
testcase_20 AC 62 ms
62,848 KB
testcase_21 AC 46 ms
59,264 KB
testcase_22 AC 60 ms
61,824 KB
testcase_23 AC 66 ms
61,056 KB
testcase_24 AC 59 ms
61,440 KB
testcase_25 AC 65 ms
61,184 KB
testcase_26 AC 367 ms
75,264 KB
testcase_27 AC 37 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K = map(int, input().split())
a = set(map(int, input().split()))
for _ in range(200):
  t = set()
  for i in a:
    for j in a:
      if j - i == 1 and (i - 3 > 0): t.add(i - 3)
      if j - i == 3 and (i - 2 > 0): t.add(i - 2)
      if j - i == 5 and (i - 1 > 0): t.add(i - 1)
  if 1 in t:
    print("No")
    exit(0)
  a |= t
for x in a:
  if (x + 1) in a:
    if x - 8 >= 1:
      print("No")
      exit(0)
  if (x + 3) in a:
    if x - 5 >= 1:
      print("No")
      exit(0)
  if (x + 5) in a:
    if x - 9 >= 1:
      print("No")
      exit(0)
for i in a:
  if (i + 1) in a and (i + 2) in a and (i + 3) in a and (i + 4) in a:
    print("No")
    exit(0)
if 1 in a: print("No")
else: print("Yes")
0