結果

問題 No.1470 Mex Sum
ユーザー tentententen
提出日時 2022-08-05 09:06:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 1,472 bytes
コンパイル時間 2,363 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 56,160 KB
最終ジャッジ日時 2024-09-15 04:44:08
合計ジャッジ時間 14,950 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
49,972 KB
testcase_01 AC 55 ms
50,284 KB
testcase_02 AC 117 ms
52,036 KB
testcase_03 AC 116 ms
51,804 KB
testcase_04 AC 115 ms
51,708 KB
testcase_05 AC 111 ms
51,608 KB
testcase_06 AC 114 ms
51,912 KB
testcase_07 AC 114 ms
51,604 KB
testcase_08 AC 112 ms
51,856 KB
testcase_09 AC 116 ms
51,708 KB
testcase_10 AC 112 ms
51,668 KB
testcase_11 AC 114 ms
51,800 KB
testcase_12 AC 212 ms
55,460 KB
testcase_13 AC 212 ms
55,312 KB
testcase_14 AC 207 ms
55,384 KB
testcase_15 AC 211 ms
55,480 KB
testcase_16 AC 202 ms
55,524 KB
testcase_17 AC 210 ms
55,296 KB
testcase_18 AC 208 ms
55,268 KB
testcase_19 AC 215 ms
55,268 KB
testcase_20 AC 211 ms
55,360 KB
testcase_21 AC 213 ms
55,296 KB
testcase_22 AC 217 ms
55,240 KB
testcase_23 AC 205 ms
55,272 KB
testcase_24 AC 219 ms
55,644 KB
testcase_25 AC 216 ms
55,676 KB
testcase_26 AC 214 ms
55,440 KB
testcase_27 AC 214 ms
55,280 KB
testcase_28 AC 214 ms
55,304 KB
testcase_29 AC 213 ms
55,292 KB
testcase_30 AC 212 ms
55,368 KB
testcase_31 AC 217 ms
55,536 KB
testcase_32 AC 215 ms
55,224 KB
testcase_33 AC 215 ms
55,540 KB
testcase_34 AC 204 ms
55,328 KB
testcase_35 AC 211 ms
55,280 KB
testcase_36 AC 207 ms
55,500 KB
testcase_37 AC 196 ms
55,820 KB
testcase_38 AC 212 ms
56,048 KB
testcase_39 AC 199 ms
55,608 KB
testcase_40 AC 216 ms
55,808 KB
testcase_41 AC 221 ms
55,992 KB
testcase_42 AC 214 ms
55,880 KB
testcase_43 AC 197 ms
55,868 KB
testcase_44 AC 217 ms
55,932 KB
testcase_45 AC 218 ms
55,944 KB
testcase_46 AC 193 ms
55,552 KB
testcase_47 AC 217 ms
55,864 KB
testcase_48 AC 217 ms
56,160 KB
testcase_49 AC 215 ms
55,956 KB
testcase_50 AC 217 ms
55,804 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 x = sc.nextInt();
            if (x == 1) {
                one++;
            } else if (x == 2) {
                two++;
            } else {
                other++;
            }
        }
        long ans = 0;
        ans += 2 * one * (one - 1) / 2;
        ans += 3 * one * two;
        ans += 2 * one * other;
        ans += 1 * two * (two - 1) / 2;
        ans += 1 * two * other;
        ans += 1 * other * (other - 1) / 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 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