結果

問題 No.408 五輪ピック
ユーザー TawaraTawara
提出日時 2016-08-05 23:27:26
言語 PyPy2
(7.3.15)
結果
MLE  
実行時間 -
コード長 499 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 76,732 KB
実行使用メモリ 91,188 KB
最終ジャッジ日時 2024-11-07 03:15:24
合計ジャッジ時間 12,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,168 KB
testcase_01 AC 71 ms
75,576 KB
testcase_02 AC 73 ms
75,560 KB
testcase_03 AC 72 ms
75,152 KB
testcase_04 AC 73 ms
75,576 KB
testcase_05 AC 135 ms
79,652 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 134 ms
79,936 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 131 ms
79,368 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 AC 112 ms
78,884 KB
testcase_22 MLE -
testcase_23 MLE -
testcase_24 MLE -
testcase_25 MLE -
testcase_26 MLE -
testcase_27 MLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,raw_input().split())
E = [[] for i in xrange(N)]
for i in xrange(M):
	A,B = map(lambda x:int(x)-1,raw_input().split())
	E[A].append(B)
	E[B].append(A)
for i in xrange(N):
	E[i].sort()
def check(gone,nxt):
	while gone:
		if gone % 10000 == nxt:
			return True
		gone /= 10000
	return False
def dfs(h,gone,num):
	if num == 5:
		if E[h][0] == 0:
			print "YES"
			quit()
	else:
		for nxt in E[h]:
			if check(gone,nxt):
				continue
			dfs(nxt,gone*10000+nxt,num+1)
dfs(0,0,1)
print "NO" 
0