結果

問題 No.2888 Mamehinata
ユーザー moon17moon17
提出日時 2024-09-13 22:54:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 151,624 KB
最終ジャッジ日時 2024-09-13 22:54:37
合計ジャッジ時間 15,763 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,244 KB
testcase_01 AC 42 ms
55,004 KB
testcase_02 AC 42 ms
54,048 KB
testcase_03 AC 44 ms
54,096 KB
testcase_04 WA -
testcase_05 AC 43 ms
54,464 KB
testcase_06 AC 43 ms
55,380 KB
testcase_07 AC 44 ms
54,296 KB
testcase_08 AC 43 ms
54,612 KB
testcase_09 AC 43 ms
54,436 KB
testcase_10 AC 43 ms
54,312 KB
testcase_11 WA -
testcase_12 AC 43 ms
54,360 KB
testcase_13 AC 155 ms
90,636 KB
testcase_14 AC 118 ms
86,248 KB
testcase_15 WA -
testcase_16 AC 373 ms
117,084 KB
testcase_17 WA -
testcase_18 AC 207 ms
100,628 KB
testcase_19 AC 431 ms
122,704 KB
testcase_20 AC 359 ms
115,672 KB
testcase_21 AC 373 ms
115,148 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 361 ms
116,476 KB
testcase_25 AC 254 ms
110,800 KB
testcase_26 AC 282 ms
110,164 KB
testcase_27 AC 161 ms
95,940 KB
testcase_28 AC 123 ms
84,208 KB
testcase_29 AC 207 ms
94,880 KB
testcase_30 AC 418 ms
123,548 KB
testcase_31 AC 366 ms
115,104 KB
testcase_32 AC 264 ms
103,752 KB
testcase_33 AC 339 ms
112,948 KB
testcase_34 AC 281 ms
106,876 KB
testcase_35 AC 258 ms
101,952 KB
testcase_36 AC 500 ms
127,796 KB
testcase_37 AC 477 ms
129,904 KB
testcase_38 AC 194 ms
96,228 KB
testcase_39 AC 487 ms
142,492 KB
testcase_40 AC 539 ms
151,624 KB
testcase_41 AC 148 ms
87,552 KB
testcase_42 AC 488 ms
139,836 KB
testcase_43 AC 322 ms
122,976 KB
testcase_44 AC 347 ms
128,668 KB
testcase_45 AC 396 ms
136,340 KB
testcase_46 AC 114 ms
83,708 KB
testcase_47 AC 340 ms
126,784 KB
testcase_48 AC 335 ms
131,340 KB
testcase_49 AC 94 ms
81,952 KB
testcase_50 AC 184 ms
101,796 KB
testcase_51 AC 60 ms
72,584 KB
testcase_52 AC 57 ms
67,332 KB
testcase_53 AC 79 ms
78,668 KB
testcase_54 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import*
(n,m),*e=[[*map(int,s.split())]for s in open(0)]
g=[[]for _ in range(n)]
for u,v in e:
  g[u-1]+=v-1,
  g[v-1]+=u-1,
q=deque([0])
s=[-1]*n
s[0]=0
while q:
  p=q.popleft()
  for v in g[p]:
    if s[v]<0:
      s[v]=s[p]+1
      q+=v,
c=Counter(s)
t=0
d=[1,0]
for i in range(n):
  t^=1
  d[(i+1)%2]+=c[i+1]
  print(d[t])
0