結果

問題 No.2203 POWER!!!!!
ユーザー おきょん.おきょん.
提出日時 2023-02-04 19:50:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 130 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 267,408 KB
最終ジャッジ日時 2024-07-03 16:23:31
合計ジャッジ時間 4,004 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,680 KB
testcase_01 AC 38 ms
52,824 KB
testcase_02 AC 38 ms
52,396 KB
testcase_03 AC 41 ms
58,368 KB
testcase_04 AC 39 ms
59,388 KB
testcase_05 AC 39 ms
59,940 KB
testcase_06 AC 39 ms
58,572 KB
testcase_07 AC 35 ms
53,500 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
ans = 0

for i in a:
    ans += i * sum([i**(x-1) for x in a])
    
print(ans)
0