結果

問題 No.479 頂点は要らない
ユーザー 双六双六
提出日時 2020-08-10 04:30:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 1,500 ms
コード長 602 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 94,464 KB
最終ジャッジ日時 2024-10-06 00:55:52
合計ジャッジ時間 6,776 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 43 ms
53,376 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 40 ms
53,632 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 40 ms
53,760 KB
testcase_07 AC 41 ms
53,632 KB
testcase_08 AC 40 ms
53,504 KB
testcase_09 AC 40 ms
53,632 KB
testcase_10 AC 40 ms
53,504 KB
testcase_11 AC 39 ms
54,016 KB
testcase_12 AC 42 ms
54,016 KB
testcase_13 AC 40 ms
53,632 KB
testcase_14 AC 40 ms
53,632 KB
testcase_15 AC 40 ms
53,888 KB
testcase_16 AC 40 ms
53,504 KB
testcase_17 AC 40 ms
53,504 KB
testcase_18 AC 40 ms
53,760 KB
testcase_19 AC 47 ms
62,208 KB
testcase_20 AC 47 ms
62,336 KB
testcase_21 AC 46 ms
61,952 KB
testcase_22 AC 47 ms
62,080 KB
testcase_23 AC 48 ms
61,824 KB
testcase_24 AC 48 ms
61,824 KB
testcase_25 AC 47 ms
61,568 KB
testcase_26 AC 312 ms
94,464 KB
testcase_27 AC 324 ms
94,176 KB
testcase_28 AC 119 ms
92,672 KB
testcase_29 AC 181 ms
89,728 KB
testcase_30 AC 184 ms
89,744 KB
testcase_31 AC 183 ms
89,760 KB
testcase_32 AC 187 ms
89,668 KB
testcase_33 AC 224 ms
88,576 KB
testcase_34 AC 267 ms
90,052 KB
testcase_35 AC 304 ms
87,988 KB
testcase_36 AC 219 ms
83,584 KB
testcase_37 AC 245 ms
89,472 KB
testcase_38 AC 217 ms
87,296 KB
testcase_39 AC 153 ms
84,224 KB
testcase_40 AC 163 ms
86,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, M = getlist()
	edge = []
	ans = [0] * N
	for i in range(M):
		a, b = getlist()
		edge.append([a, b])

	edge.sort()

	for i in range(M):
		a, b = edge[-1 - i]
		if ans[a] == 0 and ans[b] == 0:
			ans[a] = 1

	while True:
		if ans[-1] == 0:
			ans.pop()
		else:
			break

	anspre = "".join(list(map(str, ans)))
	print(anspre[::-1])


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