結果

問題 No.2062 Sum of Subset mod 999630629
ユーザー 👑 KazunKazun
提出日時 2022-08-26 22:44:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 144 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 81,008 KB
最終ジャッジ日時 2024-10-13 23:21:54
合計ジャッジ時間 2,838 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 34 ms
51,328 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 35 ms
51,328 KB
testcase_07 AC 34 ms
51,584 KB
testcase_08 AC 56 ms
77,952 KB
testcase_09 AC 50 ms
73,856 KB
testcase_10 AC 50 ms
72,064 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 54 ms
76,800 KB
testcase_24 AC 52 ms
76,800 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

Mod1=998244353
Mod2=999630629

N=int(input())
A=list(map(int,input().split()))

A_sum=sum(A)
alpha=pow(2,N-1,Mod1*Mod2)
print(A_sum*alpha%Mod1)
0