結果

問題 No.479 頂点は要らない
ユーザー はむ吉🐹はむ吉🐹
提出日時 2017-01-29 18:27:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 92,384 KB
最終ジャッジ日時 2024-06-06 09:30:11
合計ジャッジ時間 5,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,808 KB
testcase_01 AC 38 ms
53,416 KB
testcase_02 AC 38 ms
53,416 KB
testcase_03 AC 38 ms
52,684 KB
testcase_04 WA -
testcase_05 AC 38 ms
53,300 KB
testcase_06 AC 37 ms
52,000 KB
testcase_07 AC 38 ms
53,072 KB
testcase_08 AC 37 ms
53,036 KB
testcase_09 AC 38 ms
53,180 KB
testcase_10 AC 38 ms
53,260 KB
testcase_11 AC 38 ms
53,664 KB
testcase_12 WA -
testcase_13 AC 38 ms
52,888 KB
testcase_14 AC 38 ms
53,840 KB
testcase_15 AC 38 ms
53,024 KB
testcase_16 AC 38 ms
52,824 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 58 ms
64,612 KB
testcase_21 AC 55 ms
63,524 KB
testcase_22 AC 57 ms
65,692 KB
testcase_23 AC 58 ms
64,660 KB
testcase_24 AC 57 ms
64,736 KB
testcase_25 AC 54 ms
63,388 KB
testcase_26 AC 252 ms
89,304 KB
testcase_27 AC 240 ms
89,304 KB
testcase_28 AC 177 ms
92,384 KB
testcase_29 AC 173 ms
83,468 KB
testcase_30 AC 174 ms
83,436 KB
testcase_31 AC 177 ms
83,804 KB
testcase_32 AC 174 ms
83,256 KB
testcase_33 AC 214 ms
84,340 KB
testcase_34 WA -
testcase_35 AC 207 ms
82,592 KB
testcase_36 AC 151 ms
79,508 KB
testcase_37 AC 231 ms
85,232 KB
testcase_38 AC 199 ms
83,228 KB
testcase_39 AC 169 ms
82,324 KB
testcase_40 AC 190 ms
84,516 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]).strip("0"))


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