結果

問題 No.479 頂点は要らない
ユーザー ああいいああいい
提出日時 2022-03-08 18:40:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 878 ms / 1,500 ms
コード長 407 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 92,916 KB
最終ジャッジ日時 2024-07-23 18:43:50
合計ジャッジ時間 9,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 40 ms
52,012 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 40 ms
52,240 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 40 ms
52,224 KB
testcase_13 AC 39 ms
52,480 KB
testcase_14 AC 39 ms
51,712 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 40 ms
52,608 KB
testcase_17 AC 40 ms
52,352 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 57 ms
62,080 KB
testcase_20 AC 56 ms
62,464 KB
testcase_21 AC 57 ms
62,848 KB
testcase_22 AC 57 ms
62,464 KB
testcase_23 AC 58 ms
62,208 KB
testcase_24 AC 59 ms
61,696 KB
testcase_25 AC 53 ms
56,064 KB
testcase_26 AC 621 ms
89,428 KB
testcase_27 AC 628 ms
89,564 KB
testcase_28 AC 878 ms
92,916 KB
testcase_29 AC 279 ms
83,328 KB
testcase_30 AC 276 ms
83,200 KB
testcase_31 AC 273 ms
83,328 KB
testcase_32 AC 277 ms
83,208 KB
testcase_33 AC 329 ms
84,280 KB
testcase_34 AC 345 ms
84,100 KB
testcase_35 AC 204 ms
82,432 KB
testcase_36 AC 130 ms
77,752 KB
testcase_37 AC 373 ms
84,864 KB
testcase_38 AC 281 ms
82,944 KB
testcase_39 AC 238 ms
82,432 KB
testcase_40 AC 331 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())

G = [[] for _ in range(n)]
Gnum = [0] * n
for _ in range(m):
    a,b = map(int,input().split())
    G[a].append(b)
    G[b].append(a)
    Gnum[a] += 1
    Gnum[b] += 1
ans = 0
dp = [0] * n
for i in range(n-1,-1,-1):
    if dp[i]:
        ans |= 1 << i
        for v in G[i]:
            Gnum[v] -= 1
    else:
        for v in G[i]:
            dp[v] = 1
print(bin(ans)[2:])
0