結果

問題 No.1242 高橋君とすごろく
ユーザー wolgnikwolgnik
提出日時 2020-10-02 22:23:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 450 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 76,356 KB
最終ジャッジ日時 2024-07-17 21:49:14
合計ジャッジ時間 16,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,560 KB
testcase_01 AC 639 ms
75,608 KB
testcase_02 WA -
testcase_03 AC 621 ms
75,576 KB
testcase_04 AC 639 ms
75,660 KB
testcase_05 WA -
testcase_06 AC 649 ms
75,908 KB
testcase_07 AC 652 ms
75,456 KB
testcase_08 AC 38 ms
53,228 KB
testcase_09 AC 643 ms
75,568 KB
testcase_10 AC 832 ms
75,784 KB
testcase_11 AC 67 ms
63,024 KB
testcase_12 AC 846 ms
75,608 KB
testcase_13 AC 68 ms
64,080 KB
testcase_14 AC 836 ms
75,664 KB
testcase_15 AC 65 ms
63,984 KB
testcase_16 WA -
testcase_17 AC 855 ms
75,676 KB
testcase_18 AC 866 ms
75,812 KB
testcase_19 AC 853 ms
75,780 KB
testcase_20 WA -
testcase_21 AC 841 ms
75,668 KB
testcase_22 AC 69 ms
64,264 KB
testcase_23 AC 68 ms
63,980 KB
testcase_24 AC 68 ms
64,116 KB
testcase_25 AC 67 ms
63,628 KB
testcase_26 AC 958 ms
75,928 KB
testcase_27 AC 615 ms
75,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, K = map(int, input().split())
a = set(map(int, input().split()))
for _ in range(300):
  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