結果

問題 No.2203 POWER!!!!!
ユーザー tassei903tassei903
提出日時 2023-02-04 10:40:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 101,692 KB
最終ジャッジ日時 2024-07-03 09:18:34
合計ジャッジ時間 2,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,656 KB
testcase_01 AC 36 ms
55,108 KB
testcase_02 AC 38 ms
54,080 KB
testcase_03 AC 38 ms
54,220 KB
testcase_04 AC 39 ms
54,272 KB
testcase_05 AC 38 ms
54,596 KB
testcase_06 AC 38 ms
54,268 KB
testcase_07 AC 38 ms
53,696 KB
testcase_08 AC 48 ms
65,444 KB
testcase_09 AC 53 ms
75,488 KB
testcase_10 AC 61 ms
84,024 KB
testcase_11 AC 72 ms
96,404 KB
testcase_12 AC 46 ms
66,448 KB
testcase_13 AC 76 ms
101,448 KB
testcase_14 AC 82 ms
101,300 KB
testcase_15 AC 77 ms
101,332 KB
testcase_16 AC 77 ms
101,236 KB
testcase_17 AC 79 ms
101,692 KB
testcase_18 AC 38 ms
54,028 KB
testcase_19 AC 38 ms
54,040 KB
testcase_20 AC 36 ms
54,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n = ni()
from collections import Counter

c = Counter(na())
ans = 0
for i in c:
    for j in c:
        ans += i ** j * c[i] * c[j]
print(ans)
0