結果

問題 No.2742 Car Flow
ユーザー kenken714kenken714
提出日時 2024-04-13 18:06:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 90 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 104,996 KB
最終ジャッジ日時 2024-10-12 04:55:53
合計ジャッジ時間 4,493 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
103,536 KB
testcase_01 AC 76 ms
104,808 KB
testcase_02 AC 77 ms
103,172 KB
testcase_03 AC 77 ms
103,036 KB
testcase_04 AC 74 ms
103,156 KB
testcase_05 AC 76 ms
103,872 KB
testcase_06 AC 74 ms
104,996 KB
testcase_07 AC 76 ms
103,872 KB
testcase_08 AC 75 ms
103,740 KB
testcase_09 AC 77 ms
103,340 KB
testcase_10 AC 65 ms
90,284 KB
testcase_11 AC 69 ms
94,792 KB
testcase_12 AC 62 ms
86,636 KB
testcase_13 AC 54 ms
80,288 KB
testcase_14 AC 53 ms
78,768 KB
testcase_15 AC 39 ms
61,908 KB
testcase_16 AC 75 ms
104,052 KB
testcase_17 AC 74 ms
103,368 KB
testcase_18 AC 39 ms
61,628 KB
testcase_19 AC 74 ms
102,312 KB
testcase_20 AC 46 ms
70,728 KB
testcase_21 AC 45 ms
67,928 KB
testcase_22 AC 67 ms
93,876 KB
testcase_23 AC 72 ms
99,300 KB
testcase_24 AC 55 ms
79,936 KB
testcase_25 AC 69 ms
97,964 KB
testcase_26 AC 74 ms
102,636 KB
testcase_27 AC 49 ms
72,208 KB
testcase_28 AC 51 ms
76,052 KB
testcase_29 AC 38 ms
59,160 KB
testcase_30 AC 69 ms
98,048 KB
testcase_31 AC 43 ms
68,388 KB
testcase_32 AC 69 ms
98,308 KB
testcase_33 AC 69 ms
94,452 KB
testcase_34 AC 52 ms
75,516 KB
testcase_35 AC 45 ms
68,844 KB
testcase_36 AC 38 ms
58,572 KB
testcase_37 AC 48 ms
72,288 KB
testcase_38 AC 67 ms
94,136 KB
testcase_39 AC 41 ms
65,144 KB
testcase_40 AC 34 ms
52,056 KB
testcase_41 AC 35 ms
52,212 KB
testcase_42 AC 34 ms
52,416 KB
testcase_43 AC 34 ms
53,628 KB
testcase_44 AC 35 ms
51,944 KB
testcase_45 AC 33 ms
52,056 KB
testcase_46 AC 33 ms
53,596 KB
testcase_47 AC 33 ms
51,760 KB
testcase_48 AC 34 ms
52,280 KB
testcase_49 AC 34 ms
51,696 KB
testcase_50 AC 32 ms
52,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m=998244353
n,*c=map(int,open(0).read().split())
c=sum(c)
print(min(c,n-c)*pow(n,m-2,m)%m)
0