結果

問題 No.2742 Car Flow
ユーザー tassei903tassei903
提出日時 2024-04-12 00:07:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 195 bytes
コンパイル時間 2,578 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 95,924 KB
最終ジャッジ日時 2024-10-12 04:55:16
合計ジャッジ時間 5,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
95,488 KB
testcase_01 AC 68 ms
95,616 KB
testcase_02 AC 68 ms
95,616 KB
testcase_03 AC 67 ms
95,360 KB
testcase_04 AC 68 ms
95,360 KB
testcase_05 AC 68 ms
95,616 KB
testcase_06 AC 68 ms
95,616 KB
testcase_07 AC 69 ms
95,360 KB
testcase_08 AC 68 ms
95,924 KB
testcase_09 AC 68 ms
95,616 KB
testcase_10 AC 59 ms
84,224 KB
testcase_11 AC 62 ms
87,168 KB
testcase_12 AC 59 ms
80,896 KB
testcase_13 AC 52 ms
75,776 KB
testcase_14 AC 52 ms
73,984 KB
testcase_15 AC 40 ms
59,776 KB
testcase_16 AC 70 ms
95,232 KB
testcase_17 AC 69 ms
94,976 KB
testcase_18 AC 39 ms
59,904 KB
testcase_19 AC 69 ms
95,232 KB
testcase_20 AC 45 ms
68,096 KB
testcase_21 AC 51 ms
66,560 KB
testcase_22 AC 63 ms
87,552 KB
testcase_23 AC 67 ms
91,392 KB
testcase_24 AC 54 ms
76,032 KB
testcase_25 AC 67 ms
91,136 KB
testcase_26 AC 69 ms
95,616 KB
testcase_27 AC 49 ms
69,120 KB
testcase_28 AC 51 ms
72,064 KB
testcase_29 AC 39 ms
58,624 KB
testcase_30 AC 66 ms
90,624 KB
testcase_31 AC 44 ms
65,920 KB
testcase_32 AC 66 ms
91,136 KB
testcase_33 AC 62 ms
87,680 KB
testcase_34 AC 51 ms
72,448 KB
testcase_35 AC 45 ms
66,432 KB
testcase_36 AC 39 ms
58,112 KB
testcase_37 AC 47 ms
68,864 KB
testcase_38 AC 64 ms
87,680 KB
testcase_39 AC 43 ms
62,464 KB
testcase_40 AC 39 ms
52,096 KB
testcase_41 AC 39 ms
51,584 KB
testcase_42 AC 36 ms
52,096 KB
testcase_43 AC 36 ms
51,840 KB
testcase_44 AC 36 ms
52,076 KB
testcase_45 AC 36 ms
52,096 KB
testcase_46 AC 36 ms
51,584 KB
testcase_47 AC 37 ms
51,456 KB
testcase_48 AC 36 ms
52,096 KB
testcase_49 AC 35 ms
52,224 KB
testcase_50 AC 37 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
N = int(input())
A = list(map(int, input().split()))
S = A.count(1)
if S * 2 <= N:
    print(S * pow(N, mod-2, mod) % mod)
else:
    print((N - S) * pow(N, mod-2, mod) % mod)
    
0