結果
問題 | No.408 五輪ピック |
ユーザー | Tawara |
提出日時 | 2016-08-05 23:35:12 |
言語 | PyPy2 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 502 bytes |
コンパイル時間 | 1,664 ms |
コンパイル使用メモリ | 76,848 KB |
実行使用メモリ | 90,708 KB |
最終ジャッジ日時 | 2024-11-07 04:21:37 |
合計ジャッジ時間 | 12,575 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 77 ms
75,384 KB |
testcase_01 | AC | 78 ms
75,776 KB |
testcase_02 | AC | 79 ms
75,520 KB |
testcase_03 | AC | 78 ms
75,392 KB |
testcase_04 | AC | 75 ms
75,512 KB |
testcase_05 | AC | 147 ms
79,788 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | AC | 125 ms
79,648 KB |
testcase_15 | AC | 136 ms
79,760 KB |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | AC | 114 ms
79,104 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 | -- | - |
ソースコード
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+1): continue dfs(nxt,gone*10000+nxt+1,num+1) dfs(0,1,1) print "NO"