結果

問題 No.479 頂点は要らない
ユーザー fiordfiord
提出日時 2017-07-19 13:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 1,500 ms
コード長 509 bytes
コンパイル時間 1,239 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,640 KB
最終ジャッジ日時 2024-10-08 14:17:46
合計ジャッジ時間 7,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 37 ms
51,584 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 37 ms
51,712 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 37 ms
51,584 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 60 ms
64,384 KB
testcase_20 AC 56 ms
62,976 KB
testcase_21 AC 54 ms
62,336 KB
testcase_22 AC 57 ms
64,256 KB
testcase_23 AC 57 ms
63,360 KB
testcase_24 AC 56 ms
63,232 KB
testcase_25 AC 53 ms
62,336 KB
testcase_26 AC 202 ms
88,832 KB
testcase_27 AC 210 ms
88,704 KB
testcase_28 AC 163 ms
91,640 KB
testcase_29 AC 144 ms
83,200 KB
testcase_30 AC 146 ms
83,072 KB
testcase_31 AC 155 ms
83,072 KB
testcase_32 AC 146 ms
83,456 KB
testcase_33 AC 165 ms
83,328 KB
testcase_34 AC 164 ms
83,328 KB
testcase_35 AC 159 ms
81,024 KB
testcase_36 AC 121 ms
77,696 KB
testcase_37 AC 169 ms
84,224 KB
testcase_38 AC 150 ms
82,688 KB
testcase_39 AC 133 ms
81,664 KB
testcase_40 AC 152 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
edge = [[] for i in range(n)]
for i in range(m):
    a, b = map(int, input().split())
    edge[a].append(b)
    edge[b].append(a)
used = [True] * n
for i in reversed(range(n)):
    flag = False
    for e in edge[i]:
        if not used[e]:
            flag = True
    if not flag:
        used[i] = False
ret = ''.join(["1" if used[i] else "0" for i in reversed(range(n))])
s = 0
while s < len(ret) and ret[s] == "0":
    s += 1
ret = ret[s:]
print("0" if ret == "" else ret)
0