結果

問題 No.2910 単体ホモロジー入門
ユーザー 👑 p-adicp-adic
提出日時 2023-09-09 17:41:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 53,688 KB
最終ジャッジ日時 2024-06-27 10:20:50
合計ジャッジ時間 3,074 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,208 KB
testcase_01 AC 37 ms
52,268 KB
testcase_02 AC 38 ms
52,152 KB
testcase_03 AC 37 ms
51,748 KB
testcase_04 AC 37 ms
52,064 KB
testcase_05 AC 36 ms
52,564 KB
testcase_06 AC 36 ms
52,484 KB
testcase_07 AC 36 ms
52,132 KB
testcase_08 AC 37 ms
53,188 KB
testcase_09 AC 38 ms
53,636 KB
testcase_10 AC 37 ms
52,048 KB
testcase_11 AC 39 ms
52,888 KB
testcase_12 AC 36 ms
52,488 KB
testcase_13 AC 36 ms
52,780 KB
testcase_14 AC 36 ms
52,656 KB
testcase_15 AC 37 ms
52,360 KB
testcase_16 AC 37 ms
51,820 KB
testcase_17 AC 38 ms
52,956 KB
testcase_18 AC 37 ms
52,864 KB
testcase_19 AC 37 ms
52,776 KB
testcase_20 AC 37 ms
52,916 KB
testcase_21 AC 38 ms
52,696 KB
testcase_22 AC 37 ms
52,728 KB
testcase_23 AC 38 ms
52,080 KB
testcase_24 AC 38 ms
52,408 KB
testcase_25 AC 38 ms
52,188 KB
testcase_26 AC 38 ms
52,220 KB
testcase_27 AC 38 ms
53,652 KB
testcase_28 AC 37 ms
53,688 KB
testcase_29 AC 37 ms
52,596 KB
testcase_30 AC 38 ms
52,392 KB
testcase_31 AC 37 ms
53,076 KB
testcase_32 AC 38 ms
52,452 KB
testcase_33 AC 37 ms
52,000 KB
testcase_34 AC 37 ms
52,124 KB
testcase_35 AC 37 ms
51,700 KB
testcase_36 AC 38 ms
53,072 KB
testcase_37 AC 38 ms
52,080 KB
testcase_38 AC 38 ms
53,664 KB
testcase_39 AC 37 ms
52,544 KB
testcase_40 AC 36 ms
52,496 KB
testcase_41 AC 37 ms
52,160 KB
testcase_42 AC 37 ms
52,448 KB
testcase_43 AC 36 ms
52,096 KB
testcase_44 AC 38 ms
52,180 KB
testcase_45 AC 38 ms
52,448 KB
testcase_46 AC 37 ms
52,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
c=[0]*N
for m in range(M):
	v,w=map(int,input().split())
	c[v]+=1
	c[w]+=1
S=set(map(int,input().split()))
T=set()
for n in range(N):
	if(c[n]>1):T.add(n)
print(["No","Yes"][M>4or len(T)>2and S!=T])
0