結果

問題 No.2203 POWER!!!!!
ユーザー tentententen
提出日時 2023-02-10 16:05:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 195 ms / 2,000 ms
コード長 1,939 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 96,672 KB
実行使用メモリ 45,188 KB
最終ジャッジ日時 2024-07-07 12:21:08
合計ジャッジ時間 5,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
37,136 KB
testcase_01 AC 44 ms
36,928 KB
testcase_02 AC 46 ms
37,288 KB
testcase_03 AC 45 ms
36,780 KB
testcase_04 AC 43 ms
37,160 KB
testcase_05 AC 46 ms
37,068 KB
testcase_06 AC 45 ms
37,196 KB
testcase_07 AC 46 ms
36,808 KB
testcase_08 AC 99 ms
39,736 KB
testcase_09 AC 122 ms
42,880 KB
testcase_10 AC 140 ms
43,544 KB
testcase_11 AC 186 ms
44,988 KB
testcase_12 AC 99 ms
39,588 KB
testcase_13 AC 169 ms
44,748 KB
testcase_14 AC 191 ms
45,188 KB
testcase_15 AC 194 ms
44,724 KB
testcase_16 AC 192 ms
45,060 KB
testcase_17 AC 195 ms
45,116 KB
testcase_18 AC 45 ms
36,644 KB
testcase_19 AC 43 ms
37,172 KB
testcase_20 AC 44 ms
37,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] counts = new int[9];
        for (int i = 0; i < n; i++) {
            counts[sc.nextInt()]++;
        }
        long ans = 0;
        for (int i = 1; i <= 8; i++) {
            for (int j = 1; j <= 8; j++) {
                ans += pow(i, j) * counts[i] * counts[j];
            }
        }
        System.out.println(ans);
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else {
            return x * pow(x, p - 1);
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0