結果

問題 No.2203 POWER!!!!!
ユーザー dangodango
提出日時 2023-06-14 16:44:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 148 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 96,772 KB
最終ジャッジ日時 2024-06-23 00:42:37
合計ジャッジ時間 2,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,956 KB
testcase_01 AC 36 ms
53,072 KB
testcase_02 AC 33 ms
52,216 KB
testcase_03 AC 34 ms
52,512 KB
testcase_04 AC 38 ms
52,400 KB
testcase_05 AC 39 ms
52,492 KB
testcase_06 AC 38 ms
52,428 KB
testcase_07 AC 39 ms
52,128 KB
testcase_08 AC 49 ms
62,432 KB
testcase_09 AC 70 ms
71,060 KB
testcase_10 AC 97 ms
79,384 KB
testcase_11 AC 126 ms
91,764 KB
testcase_12 AC 50 ms
63,128 KB
testcase_13 AC 100 ms
96,700 KB
testcase_14 AC 101 ms
96,488 KB
testcase_15 AC 99 ms
95,808 KB
testcase_16 AC 100 ms
96,100 KB
testcase_17 AC 99 ms
96,772 KB
testcase_18 AC 37 ms
52,792 KB
testcase_19 AC 37 ms
53,488 KB
testcase_20 AC 36 ms
52,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
R=0
for i in range(1,9):
    for j in range(1,9):
        R+=(A.count(i)*A.count(j)*(i**j))
print(R)
0