結果

問題 No.2742 Car Flow
ユーザー 👑 rin204rin204
提出日時 2024-04-20 13:33:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 96,668 KB
最終ジャッジ日時 2024-10-12 09:03:09
合計ジャッジ時間 4,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
95,836 KB
testcase_01 AC 75 ms
96,212 KB
testcase_02 AC 79 ms
96,668 KB
testcase_03 AC 73 ms
95,504 KB
testcase_04 AC 74 ms
96,212 KB
testcase_05 AC 74 ms
96,632 KB
testcase_06 AC 73 ms
96,648 KB
testcase_07 AC 77 ms
96,472 KB
testcase_08 AC 73 ms
95,888 KB
testcase_09 AC 74 ms
96,276 KB
testcase_10 AC 64 ms
85,648 KB
testcase_11 AC 69 ms
88,684 KB
testcase_12 AC 61 ms
81,852 KB
testcase_13 AC 57 ms
76,512 KB
testcase_14 AC 54 ms
74,736 KB
testcase_15 AC 42 ms
60,616 KB
testcase_16 AC 77 ms
95,940 KB
testcase_17 AC 72 ms
95,336 KB
testcase_18 AC 41 ms
60,276 KB
testcase_19 AC 74 ms
95,216 KB
testcase_20 AC 48 ms
68,496 KB
testcase_21 AC 47 ms
67,096 KB
testcase_22 AC 68 ms
87,588 KB
testcase_23 AC 71 ms
92,252 KB
testcase_24 AC 57 ms
76,972 KB
testcase_25 AC 70 ms
91,960 KB
testcase_26 AC 75 ms
95,860 KB
testcase_27 AC 51 ms
70,888 KB
testcase_28 AC 53 ms
73,664 KB
testcase_29 AC 40 ms
58,640 KB
testcase_30 AC 70 ms
92,304 KB
testcase_31 AC 48 ms
66,440 KB
testcase_32 AC 71 ms
92,132 KB
testcase_33 AC 69 ms
87,904 KB
testcase_34 AC 54 ms
73,284 KB
testcase_35 AC 48 ms
66,724 KB
testcase_36 AC 40 ms
58,768 KB
testcase_37 AC 50 ms
70,964 KB
testcase_38 AC 69 ms
88,800 KB
testcase_39 AC 45 ms
63,092 KB
testcase_40 AC 38 ms
52,672 KB
testcase_41 AC 39 ms
52,880 KB
testcase_42 AC 38 ms
52,024 KB
testcase_43 AC 37 ms
51,996 KB
testcase_44 AC 38 ms
52,744 KB
testcase_45 AC 37 ms
52,564 KB
testcase_46 AC 37 ms
52,488 KB
testcase_47 AC 37 ms
52,596 KB
testcase_48 AC 37 ms
51,980 KB
testcase_49 AC 37 ms
53,564 KB
testcase_50 AC 38 ms
52,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

n = int(input())
A = list(map(int, input().split()))
o = A.count(0)
z = A.count(1)
print(min(o, z) * pow(n, -1, MOD) % MOD)

0