結果

問題 No.479 頂点は要らない
ユーザー mkawa2mkawa2
提出日時 2020-05-11 19:03:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 663 ms / 1,500 ms
コード長 335 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-07-18 19:14:43
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,496 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,624 KB
testcase_07 AC 24 ms
10,624 KB
testcase_08 AC 24 ms
10,624 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 24 ms
10,752 KB
testcase_11 AC 25 ms
10,368 KB
testcase_12 AC 25 ms
10,624 KB
testcase_13 AC 25 ms
10,496 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 24 ms
10,624 KB
testcase_17 AC 24 ms
10,624 KB
testcase_18 AC 28 ms
10,624 KB
testcase_19 AC 28 ms
10,752 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 28 ms
10,496 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 25 ms
10,624 KB
testcase_24 AC 26 ms
10,496 KB
testcase_25 AC 25 ms
10,624 KB
testcase_26 AC 653 ms
25,216 KB
testcase_27 AC 663 ms
25,088 KB
testcase_28 AC 569 ms
24,832 KB
testcase_29 AC 363 ms
24,952 KB
testcase_30 AC 376 ms
25,204 KB
testcase_31 AC 380 ms
25,080 KB
testcase_32 AC 382 ms
25,204 KB
testcase_33 AC 368 ms
22,656 KB
testcase_34 AC 392 ms
23,936 KB
testcase_35 AC 285 ms
24,576 KB
testcase_36 AC 160 ms
19,712 KB
testcase_37 AC 396 ms
23,168 KB
testcase_38 AC 298 ms
21,864 KB
testcase_39 AC 213 ms
18,432 KB
testcase_40 AC 288 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def MI(): return map(int, sys.stdin.buffer.readline().split())

def main():
    n,m=MI()
    ee=[]
    for e in range(m):
        u,v=MI()
        if u>v:u,v=v,u
        ee.append((u,v))
    vs=0
    for u,v in sorted(ee,reverse=True):
        if vs>>u&1 or vs>>v&1:continue
        vs|=1<<u
    print(bin(vs)[2:])

main()
0