結果

問題 No.2742 Car Flow
ユーザー PNJPNJ
提出日時 2024-04-21 00:13:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 114,456 KB
最終ジャッジ日時 2024-10-12 22:31:10
合計ジャッジ時間 5,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
112,828 KB
testcase_01 AC 88 ms
113,244 KB
testcase_02 AC 93 ms
112,968 KB
testcase_03 AC 89 ms
113,740 KB
testcase_04 AC 91 ms
114,456 KB
testcase_05 AC 90 ms
112,596 KB
testcase_06 AC 90 ms
113,144 KB
testcase_07 AC 89 ms
114,240 KB
testcase_08 AC 89 ms
113,768 KB
testcase_09 AC 89 ms
113,676 KB
testcase_10 AC 77 ms
98,984 KB
testcase_11 AC 81 ms
103,332 KB
testcase_12 AC 72 ms
93,096 KB
testcase_13 AC 66 ms
86,296 KB
testcase_14 AC 67 ms
84,796 KB
testcase_15 AC 48 ms
64,108 KB
testcase_16 AC 91 ms
112,960 KB
testcase_17 AC 89 ms
112,784 KB
testcase_18 AC 46 ms
64,448 KB
testcase_19 AC 86 ms
113,400 KB
testcase_20 AC 55 ms
75,552 KB
testcase_21 AC 55 ms
73,552 KB
testcase_22 AC 80 ms
101,076 KB
testcase_23 AC 84 ms
107,108 KB
testcase_24 AC 67 ms
86,172 KB
testcase_25 AC 88 ms
107,980 KB
testcase_26 AC 90 ms
114,212 KB
testcase_27 AC 56 ms
76,060 KB
testcase_28 AC 62 ms
81,460 KB
testcase_29 AC 45 ms
62,608 KB
testcase_30 AC 87 ms
106,912 KB
testcase_31 AC 55 ms
73,636 KB
testcase_32 AC 84 ms
107,572 KB
testcase_33 AC 79 ms
102,316 KB
testcase_34 AC 61 ms
82,388 KB
testcase_35 AC 53 ms
73,368 KB
testcase_36 AC 46 ms
61,072 KB
testcase_37 AC 58 ms
75,836 KB
testcase_38 AC 80 ms
102,224 KB
testcase_39 AC 49 ms
68,380 KB
testcase_40 AC 37 ms
53,472 KB
testcase_41 AC 37 ms
52,796 KB
testcase_42 AC 38 ms
53,004 KB
testcase_43 AC 38 ms
52,424 KB
testcase_44 AC 38 ms
52,424 KB
testcase_45 AC 37 ms
52,188 KB
testcase_46 AC 37 ms
52,180 KB
testcase_47 AC 35 ms
52,372 KB
testcase_48 AC 38 ms
52,560 KB
testcase_49 AC 37 ms
52,676 KB
testcase_50 AC 35 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
one = sum(A)
zero = N - one
B = []
for i in range(min(one,zero)):
  B.append(0)
  B.append(1)
  one -= 1
  zero -= 1
for i in range(one):
  B.append(1)
for i in range(zero):
  B.append(0)

ans = 0
for i in range(N):
  if B[i] == 1 and B[(i-1) % N] == 0:
    ans += 1

mod = 998244353
ans *= pow(N,mod-2,mod)
ans %= mod
print(ans)
0