結果

問題 No.2742 Car Flow
ユーザー PNJPNJ
提出日時 2024-04-20 16:25:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 114 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 98,084 KB
最終ジャッジ日時 2024-04-20 16:25:24
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
95,944 KB
testcase_01 AC 73 ms
96,716 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 68 ms
96,824 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 59 ms
82,560 KB
testcase_13 AC 52 ms
77,340 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 72 ms
95,888 KB
testcase_18 AC 39 ms
61,868 KB
testcase_19 WA -
testcase_20 AC 45 ms
69,948 KB
testcase_21 WA -
testcase_22 AC 61 ms
87,984 KB
testcase_23 AC 63 ms
92,820 KB
testcase_24 AC 50 ms
77,540 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 47 ms
70,776 KB
testcase_28 WA -
testcase_29 AC 38 ms
59,888 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 63 ms
91,976 KB
testcase_33 AC 61 ms
88,260 KB
testcase_34 AC 49 ms
72,932 KB
testcase_35 AC 44 ms
67,524 KB
testcase_36 WA -
testcase_37 AC 47 ms
69,700 KB
testcase_38 AC 64 ms
88,232 KB
testcase_39 WA -
testcase_40 AC 34 ms
51,976 KB
testcase_41 AC 35 ms
52,724 KB
testcase_42 AC 35 ms
53,372 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 34 ms
53,080 KB
testcase_46 WA -
testcase_47 AC 33 ms
53,028 KB
testcase_48 AC 33 ms
52,228 KB
testcase_49 AC 33 ms
51,804 KB
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
ans = sum(A) * pow(N,-1,998244353)
ans %= 998244353
print(ans)
0