結果

問題 No.479 頂点は要らない
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-11 02:30:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 1,500 ms
コード長 514 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 96,160 KB
最終ジャッジ日時 2024-11-21 08:40:32
合計ジャッジ時間 4,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,432 KB
testcase_01 AC 39 ms
52,828 KB
testcase_02 AC 41 ms
52,868 KB
testcase_03 AC 40 ms
53,356 KB
testcase_04 AC 39 ms
52,956 KB
testcase_05 AC 39 ms
52,212 KB
testcase_06 AC 38 ms
52,424 KB
testcase_07 AC 39 ms
53,996 KB
testcase_08 AC 39 ms
52,276 KB
testcase_09 AC 38 ms
52,456 KB
testcase_10 AC 38 ms
53,080 KB
testcase_11 AC 42 ms
52,624 KB
testcase_12 AC 38 ms
52,256 KB
testcase_13 AC 37 ms
52,820 KB
testcase_14 AC 39 ms
52,444 KB
testcase_15 AC 38 ms
52,460 KB
testcase_16 AC 40 ms
52,396 KB
testcase_17 AC 38 ms
53,532 KB
testcase_18 AC 39 ms
53,264 KB
testcase_19 AC 48 ms
61,144 KB
testcase_20 AC 48 ms
60,236 KB
testcase_21 AC 40 ms
54,364 KB
testcase_22 AC 47 ms
61,128 KB
testcase_23 AC 43 ms
54,892 KB
testcase_24 AC 43 ms
55,340 KB
testcase_25 AC 47 ms
60,276 KB
testcase_26 AC 157 ms
93,868 KB
testcase_27 AC 153 ms
92,828 KB
testcase_28 AC 115 ms
96,160 KB
testcase_29 AC 105 ms
84,804 KB
testcase_30 AC 107 ms
85,124 KB
testcase_31 AC 103 ms
85,364 KB
testcase_32 AC 105 ms
84,984 KB
testcase_33 AC 135 ms
85,888 KB
testcase_34 AC 126 ms
85,868 KB
testcase_35 AC 102 ms
80,056 KB
testcase_36 AC 84 ms
77,844 KB
testcase_37 AC 142 ms
86,652 KB
testcase_38 AC 122 ms
84,776 KB
testcase_39 AC 108 ms
83,344 KB
testcase_40 AC 128 ms
87,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

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)

seen = [0] * N
buy = [0] * N
for s in reversed(range(N)):
    if seen[s]:
        continue
    seen[s] = 1
    for t in G[s]:
        if seen[t]:
            continue
        buy[t] = 1
        seen[t] = 1

while buy and buy[-1] == 0:
    buy.pop()
buy.reverse()
print(*buy, sep="")
0