結果

問題 No.2203 POWER!!!!!
ユーザー ch1channnch1channn
提出日時 2023-03-03 02:21:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 779 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 99,340 KB
最終ジャッジ日時 2024-09-17 18:28:06
合計ジャッジ時間 2,276 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,160 KB
testcase_01 AC 42 ms
53,004 KB
testcase_02 AC 42 ms
53,632 KB
testcase_03 AC 38 ms
52,536 KB
testcase_04 AC 39 ms
52,988 KB
testcase_05 AC 39 ms
53,564 KB
testcase_06 AC 39 ms
52,212 KB
testcase_07 AC 39 ms
52,136 KB
testcase_08 AC 56 ms
66,244 KB
testcase_09 AC 72 ms
74,152 KB
testcase_10 AC 90 ms
83,204 KB
testcase_11 AC 112 ms
93,916 KB
testcase_12 AC 56 ms
66,340 KB
testcase_13 AC 80 ms
98,188 KB
testcase_14 AC 81 ms
98,364 KB
testcase_15 AC 81 ms
98,320 KB
testcase_16 AC 81 ms
99,340 KB
testcase_17 AC 81 ms
98,204 KB
testcase_18 AC 39 ms
52,012 KB
testcase_19 AC 38 ms
53,248 KB
testcase_20 AC 37 ms
52,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
sys.setrecursionlimit(410000000)
stdin = sys.stdin 
ni = lambda: int(ns())
na = lambda: list(map(int, stdin.readline().split()))
ns = lambda: stdin.readline().strip()
nm = lambda: map(int,input().split())
na_1 = lambda: list(map(lambda x:int(x)*(-1), stdin.readline().split()))
na_2 = lambda: list(map(lambda x:int(x)-1, stdin.readline().split()))

N = ni()
A = na()
k = max(A)
m = min(A)
num = [0]*8
ans = 0
for i in range(N):
	if num[A[i]-1] > 0:
		ans += num[A[i]-1]
	else:
		tmp = 0
		for j in range(N):
			tmp += A[i]**A[j]
		ans += tmp
		num[A[i]-1] += tmp
	
print(ans)
0