結果

問題 No.2203 POWER!!!!!
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-02-04 14:11:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 103,916 KB
最終ジャッジ日時 2024-07-03 11:52:08
合計ジャッジ時間 2,191 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,552 KB
testcase_01 AC 48 ms
55,936 KB
testcase_02 AC 46 ms
55,936 KB
testcase_03 AC 45 ms
54,912 KB
testcase_04 AC 47 ms
55,040 KB
testcase_05 AC 48 ms
55,936 KB
testcase_06 AC 47 ms
55,040 KB
testcase_07 AC 50 ms
55,424 KB
testcase_08 AC 55 ms
66,688 KB
testcase_09 AC 62 ms
75,776 KB
testcase_10 AC 70 ms
85,484 KB
testcase_11 AC 80 ms
97,256 KB
testcase_12 AC 53 ms
67,808 KB
testcase_13 AC 92 ms
103,908 KB
testcase_14 AC 91 ms
103,884 KB
testcase_15 AC 92 ms
103,916 KB
testcase_16 AC 92 ms
103,692 KB
testcase_17 AC 88 ms
103,700 KB
testcase_18 AC 42 ms
56,060 KB
testcase_19 AC 41 ms
55,424 KB
testcase_20 AC 41 ms
57,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
A = list(map(int,input().split()))
C = Counter(A)
ans = 0
for k,v in C.items():
    for k2,v2 in C.items():
        ans += v*v2*pow(k,k2)
print(ans)
0