結果

問題 No.2203 POWER!!!!!
ユーザー noriocnorioc
提出日時 2024-07-04 00:15:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 102,048 KB
最終ジャッジ日時 2024-07-04 00:15:46
合計ジャッジ時間 2,357 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,848 KB
testcase_01 AC 43 ms
54,456 KB
testcase_02 AC 45 ms
54,196 KB
testcase_03 AC 42 ms
54,088 KB
testcase_04 AC 44 ms
53,976 KB
testcase_05 AC 44 ms
54,724 KB
testcase_06 AC 43 ms
54,352 KB
testcase_07 AC 43 ms
53,932 KB
testcase_08 AC 53 ms
65,004 KB
testcase_09 AC 56 ms
74,620 KB
testcase_10 AC 63 ms
84,440 KB
testcase_11 AC 73 ms
96,996 KB
testcase_12 AC 48 ms
65,596 KB
testcase_13 AC 83 ms
101,176 KB
testcase_14 AC 82 ms
101,196 KB
testcase_15 AC 83 ms
101,576 KB
testcase_16 AC 83 ms
101,012 KB
testcase_17 AC 80 ms
102,048 KB
testcase_18 AC 43 ms
55,220 KB
testcase_19 AC 41 ms
53,624 KB
testcase_20 AC 42 ms
53,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

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

freq = Counter(A)
ans = 0
for a in range(1, 9):
    for b in range(1, 9):
        cnt = freq[a] * freq[b]  # a^b の個数
        ans += pow(a, b) * cnt

print(ans)
0