結果
問題 | No.2202 贅沢てりたまチキン |
ユーザー | FromBooska |
提出日時 | 2023-03-05 16:36:42 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 807 bytes |
コンパイル時間 | 181 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 311,444 KB |
最終ジャッジ日時 | 2024-09-18 01:36:57 |
合計ジャッジ時間 | 5,613 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
59,008 KB |
testcase_01 | AC | 36 ms
53,504 KB |
testcase_02 | AC | 36 ms
53,504 KB |
testcase_03 | AC | 36 ms
53,760 KB |
testcase_04 | AC | 39 ms
52,992 KB |
testcase_05 | AC | 35 ms
53,376 KB |
testcase_06 | AC | 37 ms
53,120 KB |
testcase_07 | AC | 36 ms
53,880 KB |
testcase_08 | AC | 36 ms
53,504 KB |
testcase_09 | AC | 36 ms
53,248 KB |
testcase_10 | AC | 47 ms
73,984 KB |
testcase_11 | AC | 37 ms
52,992 KB |
testcase_12 | AC | 39 ms
53,504 KB |
testcase_13 | AC | 38 ms
53,632 KB |
testcase_14 | AC | 239 ms
123,648 KB |
testcase_15 | AC | 246 ms
123,904 KB |
testcase_16 | AC | 268 ms
137,240 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
# 頂点倍化 N, M = map(int, input().split()) edges = [[] for i in range(N*2+1)] for i in range(M): a, b = map(int, input().split()) edges[a].append(b+N) edges[b+N].append(a) edges[b].append(a+N) edges[a+N].append(b) from collections import deque def bfs(start, goal): que = deque() que.append(start) visited = [0]*(N*2+1) visited[start] = 0 while que: current = que.popleft() if current == goal: return 1 for nxt in edges[current]: if visited[nxt] == 0: visited[nxt] = 1 que.append(nxt) return 0 test = 1 for i in range(1, N+1): calc = bfs(i, i+N) #print(i, calc) test *= calc if test == 0: break if test == 1: print('Yes') else: print('No')