結果

問題 No.2674 k-Walk on Bipartite
ユーザー tailstails
提出日時 2024-03-15 23:27:28
言語 cLay
(20240714-1)
結果
RE  
実行時間 -
コード長 188 bytes
コンパイル時間 2,757 ms
コンパイル使用メモリ 173,544 KB
実行使用メモリ 13,624 KB
最終ジャッジ日時 2024-09-30 03:01:22
合計ジャッジ時間 4,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 13 ms
10,012 KB
testcase_08 AC 13 ms
10,408 KB
testcase_09 AC 10 ms
9,900 KB
testcase_10 AC 17 ms
13,624 KB
testcase_11 AC 14 ms
10,284 KB
testcase_12 AC 16 ms
11,672 KB
testcase_13 AC 9 ms
10,216 KB
testcase_14 AC 4 ms
7,880 KB
testcase_15 AC 17 ms
12,660 KB
testcase_16 AC 14 ms
13,344 KB
testcase_17 AC 14 ms
11,156 KB
testcase_18 AC 5 ms
8,676 KB
testcase_19 AC 10 ms
11,444 KB
testcase_20 AC 9 ms
11,308 KB
testcase_21 AC 11 ms
10,668 KB
testcase_22 AC 21 ms
12,940 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 2 ms
7,492 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 1 ms
6,816 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 2 ms
6,820 KB
testcase_37 AC 2 ms
6,820 KB
testcase_38 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

int@n,@m,@s,@t,@k,@(a,b)[m];
if(m==0)exit(1);
graph g;
g.setEdge(n+1,m,a,b);
ll l=g.getDist(s,t);
wt(n==1?"No":l<0?n==2&&~k&1?"No":"Unknown":l+k&1?"No":l>k||!l&&!g.es[s]?"Unknown":"Yes");
0