結果

問題 No.1470 Mex Sum
ユーザー tentententen
提出日時 2021-04-13 12:53:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 193 ms / 2,000 ms
コード長 1,302 bytes
コンパイル時間 3,239 ms
コンパイル使用メモリ 76,808 KB
実行使用メモリ 45,100 KB
最終ジャッジ日時 2024-06-29 13:36:25
合計ジャッジ時間 11,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
37,256 KB
testcase_01 AC 49 ms
37,084 KB
testcase_02 AC 103 ms
39,928 KB
testcase_03 AC 88 ms
39,676 KB
testcase_04 AC 99 ms
40,180 KB
testcase_05 AC 98 ms
39,988 KB
testcase_06 AC 104 ms
39,868 KB
testcase_07 AC 100 ms
39,948 KB
testcase_08 AC 100 ms
40,200 KB
testcase_09 AC 99 ms
40,200 KB
testcase_10 AC 101 ms
40,184 KB
testcase_11 AC 99 ms
40,084 KB
testcase_12 AC 176 ms
44,604 KB
testcase_13 AC 183 ms
44,852 KB
testcase_14 AC 182 ms
45,024 KB
testcase_15 AC 189 ms
44,808 KB
testcase_16 AC 187 ms
44,772 KB
testcase_17 AC 182 ms
44,900 KB
testcase_18 AC 186 ms
44,648 KB
testcase_19 AC 180 ms
44,872 KB
testcase_20 AC 183 ms
44,636 KB
testcase_21 AC 180 ms
44,780 KB
testcase_22 AC 188 ms
44,836 KB
testcase_23 AC 181 ms
44,532 KB
testcase_24 AC 188 ms
44,748 KB
testcase_25 AC 185 ms
44,708 KB
testcase_26 AC 181 ms
44,968 KB
testcase_27 AC 183 ms
44,468 KB
testcase_28 AC 183 ms
44,564 KB
testcase_29 AC 181 ms
44,860 KB
testcase_30 AC 184 ms
44,664 KB
testcase_31 AC 193 ms
44,520 KB
testcase_32 AC 184 ms
44,588 KB
testcase_33 AC 191 ms
44,932 KB
testcase_34 AC 186 ms
44,768 KB
testcase_35 AC 188 ms
44,568 KB
testcase_36 AC 187 ms
44,964 KB
testcase_37 AC 172 ms
44,800 KB
testcase_38 AC 185 ms
44,648 KB
testcase_39 AC 177 ms
44,996 KB
testcase_40 AC 188 ms
44,636 KB
testcase_41 AC 182 ms
45,100 KB
testcase_42 AC 184 ms
44,676 KB
testcase_43 AC 186 ms
44,748 KB
testcase_44 AC 184 ms
44,928 KB
testcase_45 AC 179 ms
44,580 KB
testcase_46 AC 190 ms
44,640 KB
testcase_47 AC 184 ms
44,744 KB
testcase_48 AC 177 ms
44,700 KB
testcase_49 AC 183 ms
44,920 KB
testcase_50 AC 183 ms
44,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        long one = 0;
        long two = 0;
        long other = 0;
        for (int i = 0; i < n; i++) {
            int a = sc.nextInt();
            if (a == 1) {
                one++;
            } else if (a == 2) {
                two++;
            } else {
                other++;
            }
        }
        long ans = 0;
        ans += one * (one - 1) / 2 * 2;
        ans += one * two * 3;
        ans += one * other * 2;
        ans += (two + other - 1) * (two + other) / 2;
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0