結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,460 KB
testcase_01 AC 101 ms
76,164 KB
testcase_02 WA -
testcase_03 AC 98 ms
75,896 KB
testcase_04 AC 101 ms
76,140 KB
testcase_05 WA -
testcase_06 AC 101 ms
76,168 KB
testcase_07 AC 102 ms
76,188 KB
testcase_08 AC 72 ms
71,468 KB
testcase_09 AC 102 ms
76,148 KB
testcase_10 AC 125 ms
76,196 KB
testcase_11 AC 82 ms
75,952 KB
testcase_12 AC 124 ms
76,280 KB
testcase_13 AC 85 ms
75,708 KB
testcase_14 AC 124 ms
76,172 KB
testcase_15 AC 83 ms
75,924 KB
testcase_16 WA -
testcase_17 AC 126 ms
76,088 KB
testcase_18 AC 126 ms
76,276 KB
testcase_19 AC 127 ms
76,308 KB
testcase_20 WA -
testcase_21 AC 126 ms
76,184 KB
testcase_22 AC 85 ms
75,992 KB
testcase_23 AC 86 ms
75,712 KB
testcase_24 AC 86 ms
76,012 KB
testcase_25 AC 84 ms
75,980 KB
testcase_26 AC 143 ms
76,216 KB
testcase_27 AC 99 ms
76,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K = map(int, input().split())
a = set(map(int, input().split()))
for _ in range(100):
  t = set()
  for i in a:
    for j in a:
      if j - i == 1: t.add(i - 3)
      if j - i == 3: t.add(i - 2)
      if j - i == 5: t.add(i - 1)
  a |= t
sa = sorted(a)
for i in range(len(sa)):
  if i + 3 >= len(sa): continue
  if sa[i + 3] - sa[i] == 3:
    print("No")
    exit(0)
if 1 in a: print("No")
else: print("Yes")
0