結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,808 KB
testcase_01 AC 38 ms
52,468 KB
testcase_02 AC 39 ms
51,996 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 41 ms
53,416 KB
testcase_05 AC 38 ms
53,336 KB
testcase_06 AC 38 ms
52,816 KB
testcase_07 AC 38 ms
52,156 KB
testcase_08 AC 38 ms
52,580 KB
testcase_09 AC 40 ms
52,684 KB
testcase_10 AC 38 ms
52,028 KB
testcase_11 AC 39 ms
52,936 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 38 ms
52,904 KB
testcase_14 AC 37 ms
53,136 KB
testcase_15 AC 38 ms
53,140 KB
testcase_16 AC 37 ms
53,348 KB
testcase_17 AC 38 ms
52,372 KB
testcase_18 AC 38 ms
52,004 KB
testcase_19 AC 48 ms
61,148 KB
testcase_20 AC 47 ms
61,660 KB
testcase_21 AC 40 ms
54,420 KB
testcase_22 AC 46 ms
61,020 KB
testcase_23 AC 42 ms
54,240 KB
testcase_24 AC 42 ms
54,432 KB
testcase_25 AC 47 ms
60,356 KB
testcase_26 AC 167 ms
93,976 KB
testcase_27 AC 160 ms
92,740 KB
testcase_28 AC 120 ms
96,004 KB
testcase_29 AC 106 ms
85,156 KB
testcase_30 AC 107 ms
85,128 KB
testcase_31 AC 106 ms
85,492 KB
testcase_32 AC 106 ms
84,920 KB
testcase_33 AC 145 ms
85,792 KB
testcase_34 AC 139 ms
86,324 KB
testcase_35 AC 116 ms
80,412 KB
testcase_36 AC 92 ms
77,552 KB
testcase_37 AC 154 ms
86,604 KB
testcase_38 AC 136 ms
85,120 KB
testcase_39 AC 119 ms
83,900 KB
testcase_40 AC 136 ms
86,800 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