結果

問題 No.479 頂点は要らない
ユーザー roarisroaris
提出日時 2020-07-26 20:42:38
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 423 bytes
コンパイル時間 384 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 111,268 KB
最終ジャッジ日時 2024-06-28 19:21:42
合計ジャッジ時間 5,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,388 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 34 ms
52,480 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 32 ms
52,224 KB
testcase_07 AC 33 ms
51,712 KB
testcase_08 AC 33 ms
52,352 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 34 ms
52,096 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 33 ms
52,224 KB
testcase_13 AC 33 ms
51,840 KB
testcase_14 AC 34 ms
52,480 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 33 ms
52,096 KB
testcase_17 AC 33 ms
52,096 KB
testcase_18 AC 34 ms
52,224 KB
testcase_19 AC 40 ms
60,544 KB
testcase_20 AC 38 ms
54,272 KB
testcase_21 AC 39 ms
59,904 KB
testcase_22 AC 39 ms
60,544 KB
testcase_23 AC 38 ms
59,392 KB
testcase_24 AC 38 ms
59,776 KB
testcase_25 AC 36 ms
54,016 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n, m = map(int, input().split())
G = [[] for _ in range(n)]

for _ in range(m):
    a, b = map(int, input().split())
    G[a].append(b)
    G[b].append(a)

s = set()
ans = []

for v in range(n-1, -1, -1):
    for nv in G[v]:
        if nv>v and nv not in s:
            s.add(v)
            ans.append('1')
            break
    else:
        ans.append('0')

print(int(''.join(ans)))
0