結果

問題 No.1470 Mex Sum
ユーザー tentententen
提出日時 2022-09-30 15:36:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,462 bytes
コンパイル時間 1,986 ms
コンパイル使用メモリ 78,196 KB
実行使用メモリ 56,352 KB
最終ジャッジ日時 2024-06-02 02:29:26
合計ジャッジ時間 12,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,132 KB
testcase_01 AC 49 ms
50,404 KB
testcase_02 AC 98 ms
52,116 KB
testcase_03 AC 103 ms
52,080 KB
testcase_04 AC 104 ms
51,960 KB
testcase_05 AC 101 ms
52,068 KB
testcase_06 AC 92 ms
51,996 KB
testcase_07 AC 101 ms
51,964 KB
testcase_08 AC 104 ms
51,952 KB
testcase_09 AC 94 ms
52,076 KB
testcase_10 AC 101 ms
52,060 KB
testcase_11 AC 102 ms
51,972 KB
testcase_12 AC 188 ms
55,664 KB
testcase_13 AC 192 ms
55,804 KB
testcase_14 AC 190 ms
55,928 KB
testcase_15 AC 198 ms
55,636 KB
testcase_16 AC 182 ms
55,768 KB
testcase_17 AC 191 ms
55,684 KB
testcase_18 AC 194 ms
55,700 KB
testcase_19 AC 196 ms
55,432 KB
testcase_20 AC 196 ms
55,544 KB
testcase_21 AC 200 ms
55,736 KB
testcase_22 AC 186 ms
55,728 KB
testcase_23 AC 200 ms
55,812 KB
testcase_24 AC 196 ms
55,716 KB
testcase_25 AC 194 ms
55,572 KB
testcase_26 AC 196 ms
55,652 KB
testcase_27 AC 184 ms
55,760 KB
testcase_28 AC 193 ms
55,540 KB
testcase_29 AC 190 ms
55,556 KB
testcase_30 AC 207 ms
55,584 KB
testcase_31 AC 202 ms
55,676 KB
testcase_32 AC 188 ms
55,672 KB
testcase_33 AC 192 ms
55,696 KB
testcase_34 AC 182 ms
55,736 KB
testcase_35 AC 186 ms
55,696 KB
testcase_36 AC 200 ms
55,576 KB
testcase_37 AC 188 ms
56,280 KB
testcase_38 AC 197 ms
56,220 KB
testcase_39 AC 196 ms
56,212 KB
testcase_40 AC 181 ms
56,012 KB
testcase_41 AC 186 ms
56,236 KB
testcase_42 AC 193 ms
56,296 KB
testcase_43 AC 195 ms
56,020 KB
testcase_44 AC 195 ms
56,264 KB
testcase_45 AC 197 ms
56,128 KB
testcase_46 AC 196 ms
56,352 KB
testcase_47 AC 185 ms
56,340 KB
testcase_48 AC 181 ms
55,872 KB
testcase_49 AC 197 ms
56,068 KB
testcase_50 AC 184 ms
56,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        long n = sc.nextInt();
        long one = 0;
        long two = 0;
        long three = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (x == 1) {
                one++;
            } else if (x == 2) {
                two++;
            } else {
                three++;
            }
        }
        long oneone = one * (one - 1) / 2 + one * three;
        long onetwo = one * two;
        long others = n * (n - 1) / 2 - oneone - onetwo;
        System.out.println(oneone * 2 + onetwo * 3 + others);
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0