結果

問題 No.2203 POWER!!!!!
ユーザー おきょん.おきょん.
提出日時 2023-02-04 22:09:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 138 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 86,876 KB
実行使用メモリ 83,956 KB
最終ジャッジ日時 2023-09-16 18:40:49
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,588 KB
testcase_01 AC 74 ms
71,612 KB
testcase_02 AC 75 ms
71,412 KB
testcase_03 AC 76 ms
75,984 KB
testcase_04 AC 75 ms
76,064 KB
testcase_05 AC 75 ms
76,072 KB
testcase_06 AC 77 ms
76,092 KB
testcase_07 AC 72 ms
71,548 KB
testcase_08 TLE -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

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