結果

問題 No.479 頂点は要らない
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-01-29 18:28:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 231 ms / 1,500 ms
コード長 630 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,672 KB
実行使用メモリ 92,256 KB
最終ジャッジ日時 2024-06-06 09:30:17
合計ジャッジ時間 5,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,812 KB
testcase_01 AC 39 ms
52,440 KB
testcase_02 AC 38 ms
53,356 KB
testcase_03 AC 37 ms
52,064 KB
testcase_04 AC 36 ms
52,500 KB
testcase_05 AC 36 ms
52,316 KB
testcase_06 AC 39 ms
52,128 KB
testcase_07 AC 37 ms
53,288 KB
testcase_08 AC 36 ms
52,712 KB
testcase_09 AC 38 ms
52,556 KB
testcase_10 AC 36 ms
53,664 KB
testcase_11 AC 35 ms
53,684 KB
testcase_12 AC 36 ms
53,460 KB
testcase_13 AC 36 ms
52,928 KB
testcase_14 AC 36 ms
52,464 KB
testcase_15 AC 35 ms
53,192 KB
testcase_16 AC 37 ms
52,524 KB
testcase_17 AC 37 ms
53,916 KB
testcase_18 AC 37 ms
52,284 KB
testcase_19 AC 58 ms
65,736 KB
testcase_20 AC 55 ms
64,868 KB
testcase_21 AC 52 ms
64,716 KB
testcase_22 AC 55 ms
64,596 KB
testcase_23 AC 53 ms
64,412 KB
testcase_24 AC 54 ms
65,752 KB
testcase_25 AC 49 ms
63,768 KB
testcase_26 AC 231 ms
89,092 KB
testcase_27 AC 212 ms
88,984 KB
testcase_28 AC 162 ms
92,256 KB
testcase_29 AC 165 ms
83,736 KB
testcase_30 AC 156 ms
83,168 KB
testcase_31 AC 165 ms
83,628 KB
testcase_32 AC 162 ms
83,576 KB
testcase_33 AC 194 ms
84,108 KB
testcase_34 AC 191 ms
84,228 KB
testcase_35 AC 183 ms
82,628 KB
testcase_36 AC 139 ms
79,976 KB
testcase_37 AC 187 ms
85,264 KB
testcase_38 AC 171 ms
83,160 KB
testcase_39 AC 175 ms
82,128 KB
testcase_40 AC 165 ms
84,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3


def main():
    n, m = (int(x) for x in input().split())
    adj_vs = [[] for _ in range(n)]
    for _ in range(m):
        a, b = (int(x) for x in input().split())
        adj_vs[a].append(b)
        adj_vs[b].append(a)
    for vs in adj_vs:
        vs.sort(reverse=True)
    needed = [False for _ in range(n)]
    for i in range(n)[::-1]:
        for j in adj_vs[i]:
            if j <= i:
                break
            elif not needed[j]:
                needed[i] = True
                break
    print("".join(str(int(x)) for x in needed[::-1]).lstrip("0"))


if __name__ == '__main__':
    main()
0