結果
| 問題 |
No.3291 K-step Navigation
|
| コンテスト | |
| ユーザー |
ゼット
|
| 提出日時 | 2025-10-03 22:45:21 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 278 bytes |
| コンパイル時間 | 225 ms |
| コンパイル使用メモリ | 82,100 KB |
| 実行使用メモリ | 71,772 KB |
| 最終ジャッジ日時 | 2025-10-03 22:45:26 |
| 合計ジャッジ時間 | 4,644 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | AC * 24 WA * 26 |
ソースコード
N,M,K,X,Y=map(int,input().split())
G=[[] for i in range(N)]
for i in range(M):
a,b=map(int,input().split())
G[a-1].append(b-1)
G[b-1].append(a)
print('No')
exit()
if len(G[X-1])+len(G[Y-1])>0:
print('Yes')
else:
if K%2==0:
print('Yes')
else:
print('No')
ゼット