結果
問題 | No.1242 高橋君とすごろく |
ユーザー | wolgnik |
提出日時 | 2020-10-02 23:08:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,004 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 62,784 KB |
最終ジャッジ日時 | 2024-07-17 23:23:02 |
合計ジャッジ時間 | 2,356 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,268 KB |
testcase_01 | AC | 40 ms
52,328 KB |
testcase_02 | AC | 48 ms
60,736 KB |
testcase_03 | AC | 40 ms
54,052 KB |
testcase_04 | AC | 38 ms
53,104 KB |
testcase_05 | AC | 43 ms
60,784 KB |
testcase_06 | AC | 38 ms
53,836 KB |
testcase_07 | AC | 37 ms
53,560 KB |
testcase_08 | AC | 38 ms
53,176 KB |
testcase_09 | AC | 37 ms
53,620 KB |
testcase_10 | AC | 38 ms
52,764 KB |
testcase_11 | AC | 60 ms
62,264 KB |
testcase_12 | AC | 38 ms
53,152 KB |
testcase_13 | AC | 58 ms
62,064 KB |
testcase_14 | AC | 38 ms
52,940 KB |
testcase_15 | AC | 58 ms
61,688 KB |
testcase_16 | AC | 62 ms
62,784 KB |
testcase_17 | AC | 40 ms
53,360 KB |
testcase_18 | AC | 41 ms
58,504 KB |
testcase_19 | AC | 44 ms
59,616 KB |
testcase_20 | WA | - |
testcase_21 | AC | 38 ms
52,276 KB |
testcase_22 | AC | 61 ms
62,136 KB |
testcase_23 | AC | 60 ms
61,784 KB |
testcase_24 | AC | 62 ms
62,412 KB |
testcase_25 | AC | 61 ms
62,568 KB |
testcase_26 | AC | 38 ms
53,080 KB |
testcase_27 | AC | 38 ms
52,280 KB |
ソースコード
import sys input = sys.stdin.readline N, K = map(int, input().split()) a = set(map(int, input().split())) 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 - 6 >= 1: print("No") exit(0) #print(a) 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 - 6 >= 1: print("No") exit(0) sa = sorted(a) #print(sa) 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")