結果

問題 No.1242 高橋君とすごろく
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-02 21:48:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 75,716 KB
最終ジャッジ日時 2024-07-16 04:44:52
合計ジャッジ時間 2,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,880 KB
testcase_01 AC 36 ms
52,528 KB
testcase_02 AC 35 ms
52,568 KB
testcase_03 AC 34 ms
52,996 KB
testcase_04 AC 34 ms
52,476 KB
testcase_05 AC 36 ms
52,456 KB
testcase_06 AC 43 ms
61,672 KB
testcase_07 AC 43 ms
61,500 KB
testcase_08 AC 36 ms
52,580 KB
testcase_09 AC 41 ms
58,716 KB
testcase_10 WA -
testcase_11 AC 42 ms
60,036 KB
testcase_12 WA -
testcase_13 AC 40 ms
58,592 KB
testcase_14 WA -
testcase_15 AC 41 ms
59,120 KB
testcase_16 AC 41 ms
60,152 KB
testcase_17 AC 41 ms
59,612 KB
testcase_18 AC 43 ms
59,972 KB
testcase_19 AC 43 ms
60,488 KB
testcase_20 AC 44 ms
59,488 KB
testcase_21 WA -
testcase_22 AC 40 ms
60,856 KB
testcase_23 AC 41 ms
60,380 KB
testcase_24 AC 44 ms
60,648 KB
testcase_25 AC 44 ms
59,844 KB
testcase_26 WA -
testcase_27 AC 37 ms
52,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int, input().split())
A = list(map(int, input().split()))

s = []
for a in A:
    s.append(a)

X = set(A)
while s:
    v = s.pop()
    for x in range(1, 6):
        for a in A:
            if v-x == a-(7-x):
                if v-x >= 1:
                    s.append(v-x)
                    X.add(v-x)

#print(X)
for x in range(1, 7):
    if 1+x in X and 1+(7-x) in X:
        print('No')
        exit()
else:
    print('Yes')
0