結果

問題 No.2888 Mamehinata
ユーザー mkawa2mkawa2
提出日時 2024-09-13 21:31:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,217 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 122,492 KB
最終ジャッジ日時 2024-09-13 21:32:18
合計ジャッジ時間 15,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,272 KB
testcase_01 AC 46 ms
53,632 KB
testcase_02 AC 48 ms
53,760 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 WA -
testcase_05 AC 47 ms
54,272 KB
testcase_06 AC 47 ms
53,760 KB
testcase_07 AC 46 ms
54,272 KB
testcase_08 AC 47 ms
53,888 KB
testcase_09 AC 47 ms
54,016 KB
testcase_10 AC 46 ms
54,016 KB
testcase_11 WA -
testcase_12 AC 46 ms
53,632 KB
testcase_13 AC 155 ms
81,536 KB
testcase_14 AC 139 ms
84,096 KB
testcase_15 WA -
testcase_16 AC 355 ms
96,384 KB
testcase_17 WA -
testcase_18 AC 204 ms
83,968 KB
testcase_19 AC 420 ms
99,072 KB
testcase_20 AC 365 ms
94,976 KB
testcase_21 AC 359 ms
95,104 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 361 ms
97,792 KB
testcase_25 AC 275 ms
96,768 KB
testcase_26 AC 299 ms
96,384 KB
testcase_27 AC 176 ms
91,136 KB
testcase_28 AC 145 ms
80,128 KB
testcase_29 AC 215 ms
85,760 KB
testcase_30 AC 449 ms
98,048 KB
testcase_31 AC 372 ms
94,976 KB
testcase_32 AC 276 ms
89,600 KB
testcase_33 AC 352 ms
93,440 KB
testcase_34 AC 293 ms
91,008 KB
testcase_35 AC 270 ms
89,344 KB
testcase_36 AC 478 ms
100,352 KB
testcase_37 AC 484 ms
101,120 KB
testcase_38 AC 186 ms
83,968 KB
testcase_39 AC 402 ms
96,000 KB
testcase_40 AC 502 ms
100,096 KB
testcase_41 AC 152 ms
80,896 KB
testcase_42 AC 427 ms
96,640 KB
testcase_43 AC 298 ms
111,240 KB
testcase_44 AC 320 ms
116,272 KB
testcase_45 AC 380 ms
122,492 KB
testcase_46 AC 122 ms
81,152 KB
testcase_47 AC 316 ms
115,724 KB
testcase_48 AC 297 ms
103,040 KB
testcase_49 AC 98 ms
77,824 KB
testcase_50 AC 161 ms
89,344 KB
testcase_51 AC 74 ms
72,960 KB
testcase_52 AC 68 ms
67,712 KB
testcase_53 AC 87 ms
76,416 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

from collections import deque

n,m=LI()
to=[[] for _ in range(n)]
for _ in range(m):
    u,v=LI1()
    to[u].append(v)
    to[v].append(u)

cc=[-1]*n
uu=[0]
cc[0]=1
c1=tot=1
for i in range(n):
    vv=[]
    for u in uu:
        for v in to[u]:
            if cc[v]==-1:
                cc[v]=cc[u]^1
                vv.append(v)
                c1+=cc[v]
                tot+=1
    uu=vv
    if i&1:
        print(c1)
    else:
        print(tot-c1)
0