結果

問題 No.2203 POWER!!!!!
ユーザー AsahiAsahi
提出日時 2023-02-03 21:54:27
言語 Java
(openjdk 23)
結果
AC  
実行時間 928 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 3,192 ms
コンパイル使用メモリ 80,872 KB
実行使用メモリ 59,568 KB
最終ジャッジ日時 2024-07-02 19:46:52
合計ジャッジ時間 12,274 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;
import java.util.stream.Stream;

public class Main{
    /* 入出力 */
    static BufferedReader buff = new BufferedReader(new InputStreamReader(System.in));
    static StringTokenizer st;
    static PrintWriter output = new PrintWriter(System.out);
    static Scanner sc = new Scanner(System.in);
    /* 定数 */
    static final int [] y4 = {0,1,0,-1};
    static final int [] x4 = {1,0,-1,0};
    static final int  INF1 = Integer.MAX_VALUE;
    static final long INF2 = Long.MAX_VALUE;
    static final long MOD1 = (long)1e9+7;
    static final long MOD2 = 998244353;
    /* Main */
    public static void main(String[] args) throws IOException{
        int n = sc.nextInt();
        long answer = 0;
        Map<Long,Long> count = new HashMap<>();
        long [] A = new long[n];
        for(int i=0;i<n;i++) A[i] = sc.nextLong();
        for(int i=0;i<n;i++) {
            if(!count.containsKey(A[i])) count.put(A[i],0L);
            count.put(A[i],count.get(A[i])+1);
        }
        for(int i=0;i<n;i++) {
            for(long val : count.keySet()) {
                answer += (long)Math.pow(A[i],val)*count.get(val);
            }
        }
        output.print(answer);
        output.flush();        
    }
}
0