結果
問題 | No.2062 Sum of Subset mod 999630629 |
ユーザー | taiga0629kyopro |
提出日時 | 2022-08-11 08:41:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 201 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,016 KB |
実行使用メモリ | 81,696 KB |
最終ジャッジ日時 | 2024-10-13 12:38:15 |
合計ジャッジ時間 | 3,112 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,992 KB |
testcase_01 | AC | 36 ms
53,380 KB |
testcase_02 | AC | 36 ms
52,548 KB |
testcase_03 | AC | 38 ms
51,812 KB |
testcase_04 | AC | 37 ms
53,308 KB |
testcase_05 | AC | 35 ms
52,740 KB |
testcase_06 | AC | 37 ms
52,284 KB |
testcase_07 | AC | 38 ms
52,604 KB |
testcase_08 | AC | 57 ms
80,576 KB |
testcase_09 | AC | 54 ms
75,280 KB |
testcase_10 | AC | 53 ms
73,676 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 | 55 ms
78,392 KB |
testcase_24 | AC | 55 ms
78,268 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
n=int(input()) a=list(map(int,input().split())) if not (1<=n<=10**5):print(aaa) if not (1<=min(a) and max(a)<=10**4):print(aaa) if n!=len(a):print(aaa) mod=998244353 print(pow(2,n-1,mod)*sum(a)%mod)