結果

問題 No.2203 POWER!!!!!
ユーザー おきょん.おきょん.
提出日時 2023-02-04 20:25:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 624 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 96,960 KB
最終ジャッジ日時 2024-07-03 16:54:23
合計ジャッジ時間 2,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 37 ms
52,480 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 43 ms
63,096 KB
testcase_09 AC 50 ms
71,168 KB
testcase_10 AC 57 ms
79,612 KB
testcase_11 AC 69 ms
91,776 KB
testcase_12 AC 43 ms
62,592 KB
testcase_13 AC 71 ms
96,960 KB
testcase_14 AC 73 ms
96,516 KB
testcase_15 AC 73 ms
96,496 KB
testcase_16 AC 74 ms
96,916 KB
testcase_17 AC 71 ms
96,368 KB
testcase_18 AC 35 ms
52,680 KB
testcase_19 AC 36 ms
52,408 KB
testcase_20 AC 36 ms
53,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Function to calculate power
def pow(a: int, b: int):
    ret = 1
    for i in range(b):
        ret *= a
    return ret

# Main Function
def main():
    # Read number of elements
    n = int(input())
    # Read array elements
    a = list(map(int, input().split()))

    # Array to count frequencyc of each numbers
    counter = [0 for i in range(9)]
    for v in a:
        counter[v] += 1
    
    # Variable to store answer
    ans = 0

    for b in range(1, 9):
        for e in range(1, 9):
            ans += counter[b] * counter[e] * pow(b, e)

    # Print ans
    print(ans)

if __name__ == "__main__":
    main()
0