結果

問題 No.1470 Mex Sum
ユーザー tenten
提出日時 2022-08-05 09:06:15
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 49
権限があれば一括ダウンロードができます

ソースコード

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