結果

問題 No.2203 POWER!!!!!
ユーザー ntudantuda
提出日時 2023-02-05 22:13:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,652 KB
最終ジャッジ日時 2024-07-04 07:51:43
合計ジャッジ時間 2,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 39 ms
53,376 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 39 ms
53,376 KB
testcase_07 AC 39 ms
53,248 KB
testcase_08 AC 50 ms
65,280 KB
testcase_09 AC 54 ms
74,496 KB
testcase_10 AC 63 ms
83,200 KB
testcase_11 AC 74 ms
96,492 KB
testcase_12 AC 48 ms
65,152 KB
testcase_13 AC 84 ms
101,248 KB
testcase_14 AC 82 ms
101,376 KB
testcase_15 AC 84 ms
101,296 KB
testcase_16 AC 84 ms
101,376 KB
testcase_17 AC 84 ms
101,652 KB
testcase_18 AC 40 ms
54,016 KB
testcase_19 AC 39 ms
53,632 KB
testcase_20 AC 41 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
from collections import defaultdict
dic = defaultdict(int)
for a in A:
    dic[a] += 1
ans = 0
for i in range(1, 9):
    for j in range(1, 9):
        ans += dic[i] * dic[j] * i ** j
print(ans)
0