結果

問題 No.2888 Mamehinata
ユーザー ああいいああいい
提出日時 2024-10-05 00:50:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 81,740 KB
実行使用メモリ 119,576 KB
最終ジャッジ日時 2024-10-05 00:50:38
合計ジャッジ時間 15,032 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
51,456 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 34 ms
52,252 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 33 ms
52,352 KB
testcase_10 AC 34 ms
51,968 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,224 KB
testcase_13 AC 131 ms
79,104 KB
testcase_14 AC 110 ms
83,416 KB
testcase_15 WA -
testcase_16 AC 327 ms
95,852 KB
testcase_17 WA -
testcase_18 AC 190 ms
83,512 KB
testcase_19 AC 339 ms
98,560 KB
testcase_20 AC 323 ms
94,592 KB
testcase_21 AC 337 ms
94,208 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 333 ms
97,152 KB
testcase_25 AC 230 ms
96,000 KB
testcase_26 AC 276 ms
95,872 KB
testcase_27 AC 143 ms
90,868 KB
testcase_28 AC 118 ms
80,256 KB
testcase_29 AC 204 ms
85,632 KB
testcase_30 AC 407 ms
97,664 KB
testcase_31 AC 330 ms
94,592 KB
testcase_32 AC 237 ms
89,496 KB
testcase_33 AC 320 ms
93,312 KB
testcase_34 AC 258 ms
90,324 KB
testcase_35 AC 237 ms
89,344 KB
testcase_36 AC 447 ms
99,840 KB
testcase_37 AC 392 ms
100,544 KB
testcase_38 AC 164 ms
83,328 KB
testcase_39 AC 371 ms
95,728 KB
testcase_40 AC 410 ms
99,456 KB
testcase_41 AC 125 ms
80,780 KB
testcase_42 AC 362 ms
95,872 KB
testcase_43 AC 255 ms
110,904 KB
testcase_44 AC 287 ms
114,968 KB
testcase_45 AC 290 ms
119,576 KB
testcase_46 AC 100 ms
81,204 KB
testcase_47 AC 273 ms
114,048 KB
testcase_48 AC 265 ms
100,980 KB
testcase_49 AC 89 ms
77,056 KB
testcase_50 AC 141 ms
85,256 KB
testcase_51 AC 61 ms
72,320 KB
testcase_52 AC 57 ms
68,352 KB
testcase_53 AC 73 ms
76,160 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):
	next = []
	while stack:
		now = stack.pop()
		for v in G[now]:
			if memo[v] == 0:
				next.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 = next
0