結果

問題 No.1242 高橋君とすごろく
ユーザー wolgnikwolgnik
提出日時 2020-10-02 23:19:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 87,280 KB
実行使用メモリ 76,736 KB
最終ジャッジ日時 2023-09-24 23:29:05
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,280 KB
testcase_01 AC 69 ms
71,148 KB
testcase_02 AC 76 ms
76,068 KB
testcase_03 AC 69 ms
71,336 KB
testcase_04 AC 69 ms
71,272 KB
testcase_05 AC 73 ms
75,620 KB
testcase_06 AC 66 ms
71,068 KB
testcase_07 AC 67 ms
71,276 KB
testcase_08 AC 68 ms
71,380 KB
testcase_09 AC 70 ms
71,028 KB
testcase_10 AC 316 ms
76,712 KB
testcase_11 AC 89 ms
75,868 KB
testcase_12 AC 326 ms
76,724 KB
testcase_13 AC 88 ms
75,880 KB
testcase_14 AC 316 ms
76,736 KB
testcase_15 AC 87 ms
75,936 KB
testcase_16 AC 89 ms
75,796 KB
testcase_17 AC 75 ms
75,892 KB
testcase_18 AC 72 ms
75,644 KB
testcase_19 AC 73 ms
75,740 KB
testcase_20 WA -
testcase_21 AC 77 ms
75,828 KB
testcase_22 AC 92 ms
75,908 KB
testcase_23 AC 88 ms
76,032 KB
testcase_24 AC 90 ms
75,908 KB
testcase_25 AC 88 ms
75,692 KB
testcase_26 AC 378 ms
76,348 KB
testcase_27 AC 69 ms
71,228 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 - 8 >= 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