結果

問題 No.2674 k-Walk on Bipartite
ユーザー tailstails
提出日時 2024-03-15 23:20:17
言語 cLay
(20240714-1)
結果
RE  
実行時間 -
コード長 174 bytes
コンパイル時間 2,886 ms
コンパイル使用メモリ 173,380 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-09-30 02:53:55
合計ジャッジ時間 4,150 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 11 ms
10,240 KB
testcase_08 AC 10 ms
9,216 KB
testcase_09 AC 10 ms
9,856 KB
testcase_10 AC 18 ms
10,624 KB
testcase_11 AC 13 ms
9,216 KB
testcase_12 AC 16 ms
10,112 KB
testcase_13 AC 9 ms
9,216 KB
testcase_14 AC 5 ms
6,528 KB
testcase_15 AC 18 ms
11,008 KB
testcase_16 AC 13 ms
10,624 KB
testcase_17 AC 14 ms
9,472 KB
testcase_18 AC 6 ms
7,424 KB
testcase_19 AC 10 ms
9,728 KB
testcase_20 AC 9 ms
9,728 KB
testcase_21 AC 12 ms
9,472 KB
testcase_22 AC 21 ms
12,160 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
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 1 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 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?"Unknown":"Yes");
0