結果

問題 No.479 頂点は要らない
ユーザー vjudge1vjudge1
提出日時 2024-12-22 14:17:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 31,872 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-12-22 14:18:01
合計ジャッジ時間 2,010 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,248 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,248 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 29 ms
5,248 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<cstdio>
using namespace std;
const int N=1e5+10; bool vis[N];
int main() {
  //freopen("highway.in","r",stdin);
  //freopen("highway.out","w",stdout);
  int n,m,u,v; scanf("%d %d",&n,&m);
  while(m--) scanf("%d %d",&u,&v),vis[u<v?u:v]=true;
  for(int i=n-1;i>=0;i--) {
    if(!vis[i]) continue;
    for(int j=i;j>=0;j--) printf("%d",vis[j]);
    break;
  }
  return 0;
}
0