結果

問題 No.479 頂点は要らない
ユーザー convexineqconvexineq
提出日時 2021-02-05 07:03:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 207 ms / 1,500 ms
コード長 317 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 92,148 KB
最終ジャッジ日時 2024-07-01 19:48:35
合計ジャッジ時間 5,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 43 ms
52,096 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 43 ms
51,968 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 40 ms
51,968 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 40 ms
51,840 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 64 ms
64,256 KB
testcase_20 AC 61 ms
63,488 KB
testcase_21 AC 59 ms
62,592 KB
testcase_22 AC 62 ms
64,000 KB
testcase_23 AC 62 ms
63,744 KB
testcase_24 AC 61 ms
63,360 KB
testcase_25 AC 58 ms
61,824 KB
testcase_26 AC 207 ms
88,192 KB
testcase_27 AC 203 ms
88,320 KB
testcase_28 AC 164 ms
92,148 KB
testcase_29 AC 154 ms
83,072 KB
testcase_30 AC 155 ms
83,200 KB
testcase_31 AC 156 ms
82,944 KB
testcase_32 AC 154 ms
83,072 KB
testcase_33 AC 184 ms
83,200 KB
testcase_34 AC 182 ms
83,456 KB
testcase_35 AC 170 ms
80,896 KB
testcase_36 AC 133 ms
77,952 KB
testcase_37 AC 194 ms
83,968 KB
testcase_38 AC 171 ms
82,560 KB
testcase_39 AC 149 ms
81,536 KB
testcase_40 AC 164 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
g = [[] for _ in range(n)]

for i in range(m):
    a,b = map(int,input().split())
    g[a].append(b)
    g[b].append(a)

r = [0]*n
for v in range(n)[::-1]:
    for c in g[v]:
        if v < c and r[c]==0:
            r[v] = 1

while r[-1]==0: r.pop()
print("".join(map(str,r))[::-1])   
0