結果

問題 No.1242 高橋君とすごろく
ユーザー brthyyjpbrthyyjp
提出日時 2020-10-02 21:50:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 437 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 81,564 KB
実行使用メモリ 80,640 KB
最終ジャッジ日時 2024-07-16 04:47:34
合計ジャッジ時間 5,102 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
57,216 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 48 ms
60,800 KB
testcase_07 AC 48 ms
61,056 KB
testcase_08 AC 37 ms
51,456 KB
testcase_09 AC 44 ms
58,240 KB
testcase_10 WA -
testcase_11 AC 47 ms
59,008 KB
testcase_12 WA -
testcase_13 AC 43 ms
57,856 KB
testcase_14 WA -
testcase_15 AC 43 ms
57,856 KB
testcase_16 AC 44 ms
59,008 KB
testcase_17 AC 44 ms
58,624 KB
testcase_18 AC 47 ms
59,008 KB
testcase_19 AC 44 ms
58,624 KB
testcase_20 AC 46 ms
59,136 KB
testcase_21 WA -
testcase_22 AC 44 ms
58,624 KB
testcase_23 AC 44 ms
58,752 KB
testcase_24 AC 44 ms
58,752 KB
testcase_25 AC 45 ms
59,008 KB
testcase_26 TLE -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

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, 7):
        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