結果

問題 No.479 頂点は要らない
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-25 10:33:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 859 ms / 1,500 ms
コード長 487 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 126,408 KB
最終ジャッジ日時 2024-10-03 01:34:39
合計ジャッジ時間 8,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 39 ms
51,968 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 39 ms
51,712 KB
testcase_17 AC 40 ms
51,840 KB
testcase_18 AC 38 ms
52,224 KB
testcase_19 AC 48 ms
61,696 KB
testcase_20 AC 44 ms
54,272 KB
testcase_21 AC 46 ms
60,160 KB
testcase_22 AC 47 ms
60,800 KB
testcase_23 AC 46 ms
59,904 KB
testcase_24 AC 46 ms
59,976 KB
testcase_25 AC 43 ms
53,760 KB
testcase_26 AC 581 ms
114,276 KB
testcase_27 AC 585 ms
114,192 KB
testcase_28 AC 859 ms
126,408 KB
testcase_29 AC 230 ms
95,000 KB
testcase_30 AC 237 ms
94,964 KB
testcase_31 AC 232 ms
94,952 KB
testcase_32 AC 244 ms
94,824 KB
testcase_33 AC 275 ms
95,800 KB
testcase_34 AC 288 ms
96,400 KB
testcase_35 AC 155 ms
88,600 KB
testcase_36 AC 91 ms
79,940 KB
testcase_37 AC 311 ms
98,396 KB
testcase_38 AC 226 ms
92,232 KB
testcase_39 AC 196 ms
90,544 KB
testcase_40 AC 288 ms
98,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n,m = map(int, input().split())
edge = [set() for i in range(n)]
for i in range(m):
    a,b = map(int, input().split())
    edge[a].add(b)
    edge[b].add(a)

ans = 0
buy = set()
for v in reversed(range(n)):
    flag = False
    for u in edge[v]:
        if u > v and u not in buy:
            flag = True
            break
    if flag:
        ans |=(1<<v)
        buy.add(v)
print(format(ans, 'b'))
0