結果

問題 No.2910 単体ホモロジー入門
ユーザー titiatitia
提出日時 2024-10-04 22:00:43
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 756 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 77,808 KB
最終ジャッジ日時 2024-10-04 22:01:07
合計ジャッジ時間 18,243 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 221 ms
77,608 KB
testcase_01 AC 197 ms
77,432 KB
testcase_02 AC 213 ms
77,420 KB
testcase_03 AC 212 ms
77,508 KB
testcase_04 AC 176 ms
77,360 KB
testcase_05 AC 195 ms
77,448 KB
testcase_06 AC 195 ms
77,728 KB
testcase_07 AC 217 ms
77,808 KB
testcase_08 AC 169 ms
77,380 KB
testcase_09 AC 185 ms
77,496 KB
testcase_10 AC 1,011 ms
76,852 KB
testcase_11 AC 1,075 ms
76,840 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 1,099 ms
76,708 KB
testcase_22 AC 1,027 ms
77,024 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 1,069 ms
77,184 KB
testcase_26 AC 1,128 ms
76,896 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 1,071 ms
77,312 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 1,051 ms
77,088 KB
testcase_33 RE -
testcase_34 AC 762 ms
77,268 KB
testcase_35 AC 747 ms
77,408 KB
testcase_36 AC 707 ms
77,480 KB
testcase_37 AC 225 ms
77,136 KB
testcase_38 AC 220 ms
77,608 KB
testcase_39 AC 216 ms
77,468 KB
testcase_40 AC 293 ms
77,500 KB
testcase_41 AC 360 ms
77,784 KB
testcase_42 AC 345 ms
77,120 KB
testcase_43 AC 279 ms
77,360 KB
testcase_44 AC 313 ms
77,412 KB
testcase_45 AC 210 ms
77,684 KB
testcase_46 AC 213 ms
77,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from random import choice,randint

N,M=map(int,input().split())
E=[[] for i in range(N)]

for i in range(M):
    x,y=map(int,input().split())
    E[x].append(y)
    E[y].append(x)

X=list(map(int,input().split()))
X.sort()
X=tuple(X)

SET=set()

for i in range(10**5):
    A=[randint(0,N-1)]

    flag=0

    while flag<100:
        to=choice(E[A[-1]])

        if to==A[0] and len(A)>=3:
            SET.add(tuple(sorted(A)))
            break
        else:
            if to in A:
                flag+=1
                continue
            else:
                A.append(to)
                flag=0
                continue

SET.discard(X)

if len(SET)>0:
    print("Yes")
else:
    print("No")
            
    

0