結果

問題 No.2888 Mamehinata
ユーザー ああいいああいい
提出日時 2024-10-05 07:52:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 504 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,832 KB
最終ジャッジ日時 2024-10-05 07:53:05
合計ジャッジ時間 13,851 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 34 ms
51,712 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,352 KB
testcase_06 AC 35 ms
52,224 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 35 ms
52,176 KB
testcase_09 AC 34 ms
52,224 KB
testcase_10 AC 34 ms
51,968 KB
testcase_11 WA -
testcase_12 AC 35 ms
52,224 KB
testcase_13 AC 153 ms
79,488 KB
testcase_14 AC 114 ms
83,584 KB
testcase_15 WA -
testcase_16 AC 291 ms
96,200 KB
testcase_17 WA -
testcase_18 AC 190 ms
83,544 KB
testcase_19 AC 334 ms
98,304 KB
testcase_20 AC 263 ms
94,592 KB
testcase_21 AC 260 ms
94,336 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 298 ms
97,280 KB
testcase_25 AC 212 ms
96,128 KB
testcase_26 AC 236 ms
95,616 KB
testcase_27 AC 146 ms
90,624 KB
testcase_28 AC 125 ms
80,256 KB
testcase_29 AC 174 ms
85,504 KB
testcase_30 AC 340 ms
98,048 KB
testcase_31 AC 300 ms
94,464 KB
testcase_32 AC 234 ms
89,216 KB
testcase_33 AC 281 ms
92,928 KB
testcase_34 AC 252 ms
90,752 KB
testcase_35 AC 236 ms
89,216 KB
testcase_36 AC 351 ms
99,456 KB
testcase_37 AC 360 ms
100,224 KB
testcase_38 AC 159 ms
83,072 KB
testcase_39 AC 347 ms
95,616 KB
testcase_40 AC 385 ms
99,712 KB
testcase_41 AC 135 ms
80,768 KB
testcase_42 AC 338 ms
96,512 KB
testcase_43 AC 249 ms
110,896 KB
testcase_44 AC 267 ms
114,712 KB
testcase_45 AC 295 ms
119,832 KB
testcase_46 AC 111 ms
81,408 KB
testcase_47 AC 266 ms
114,308 KB
testcase_48 AC 265 ms
101,112 KB
testcase_49 AC 114 ms
77,312 KB
testcase_50 AC 152 ms
84,992 KB
testcase_51 AC 70 ms
72,064 KB
testcase_52 AC 64 ms
68,864 KB
testcase_53 AC 84 ms
76,416 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for _ in range(N)]
for _ in range(M):
	u,v = map(int,input().split())
	G[u-1].append(v-1)
	G[v-1].append(u-1)
	
memo = [0] * N
memo[0] = 1
stack = [0]
even = 0
odd = 1

ans = 1
for i in range(N):
	nx = []
	while stack:
		now = stack.pop()
		for v in G[now]:
			if memo[v] == 0:
				nx.append(v)
				memo[v] = 1
				if i % 2 == 0:
					even += 1
				else:
					odd += 1
	if i % 2 == 0:
		ans = ans + even - odd
	else:
		ans = ans - even + odd
	print(ans)
	stack = nx
0