結果

問題 No.2203 POWER!!!!!
ユーザー noriocnorioc
提出日時 2024-07-04 00:13:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 101,764 KB
最終ジャッジ日時 2024-07-04 00:13:39
合計ジャッジ時間 2,087 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,308 KB
testcase_01 AC 38 ms
54,524 KB
testcase_02 AC 43 ms
54,608 KB
testcase_03 AC 42 ms
54,212 KB
testcase_04 AC 41 ms
54,268 KB
testcase_05 AC 38 ms
54,676 KB
testcase_06 AC 38 ms
54,344 KB
testcase_07 AC 38 ms
55,448 KB
testcase_08 AC 50 ms
65,540 KB
testcase_09 AC 52 ms
75,024 KB
testcase_10 AC 63 ms
82,864 KB
testcase_11 AC 73 ms
97,808 KB
testcase_12 AC 45 ms
65,648 KB
testcase_13 AC 84 ms
101,268 KB
testcase_14 AC 80 ms
101,024 KB
testcase_15 AC 80 ms
101,008 KB
testcase_16 AC 78 ms
100,892 KB
testcase_17 AC 81 ms
101,764 KB
testcase_18 AC 42 ms
53,852 KB
testcase_19 AC 41 ms
53,416 KB
testcase_20 AC 41 ms
55,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

freq = Counter(A)
ans = 0
for k, v in freq.items():
    for i in range(1, 9):
        # k^i の個数
        cnt = v * freq[i]
        ans += pow(k, i) * cnt

print(ans)
0