結果

問題 No.2203 POWER!!!!!
ユーザー おきょん.
提出日時 2023-02-04 22:09:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 138 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 85,216 KB
最終ジャッジ日時 2024-07-03 18:14:48
合計ジャッジ時間 4,062 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5 TLE * 1 -- * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n=int(input())
l = list(map(int,input().split()))
sum = 0
for i,j in itertools.product(l,l):
    sum += i**j

print(sum)
0