結果

問題 No.1470 Mex Sum
ユーザー tentententen
提出日時 2024-04-23 17:07:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 1,617 bytes
コンパイル時間 2,706 ms
コンパイル使用メモリ 78,008 KB
実行使用メモリ 44,960 KB
最終ジャッジ日時 2024-10-15 17:40:11
合計ジャッジ時間 14,039 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
36,868 KB
testcase_01 AC 53 ms
36,688 KB
testcase_02 AC 113 ms
39,868 KB
testcase_03 AC 105 ms
39,732 KB
testcase_04 AC 107 ms
39,780 KB
testcase_05 AC 106 ms
39,868 KB
testcase_06 AC 115 ms
39,728 KB
testcase_07 AC 117 ms
39,780 KB
testcase_08 AC 113 ms
39,636 KB
testcase_09 AC 115 ms
39,984 KB
testcase_10 AC 113 ms
39,780 KB
testcase_11 AC 115 ms
39,580 KB
testcase_12 AC 208 ms
44,484 KB
testcase_13 AC 207 ms
44,788 KB
testcase_14 AC 216 ms
44,108 KB
testcase_15 AC 215 ms
44,668 KB
testcase_16 AC 214 ms
44,456 KB
testcase_17 AC 214 ms
44,572 KB
testcase_18 AC 214 ms
44,380 KB
testcase_19 AC 217 ms
44,740 KB
testcase_20 AC 213 ms
44,388 KB
testcase_21 AC 208 ms
44,700 KB
testcase_22 AC 215 ms
44,256 KB
testcase_23 AC 217 ms
44,696 KB
testcase_24 AC 217 ms
44,608 KB
testcase_25 AC 217 ms
44,080 KB
testcase_26 AC 216 ms
44,724 KB
testcase_27 AC 215 ms
44,632 KB
testcase_28 AC 219 ms
44,584 KB
testcase_29 AC 217 ms
44,380 KB
testcase_30 AC 217 ms
44,724 KB
testcase_31 AC 216 ms
44,152 KB
testcase_32 AC 208 ms
44,540 KB
testcase_33 AC 204 ms
44,612 KB
testcase_34 AC 215 ms
44,612 KB
testcase_35 AC 217 ms
44,560 KB
testcase_36 AC 217 ms
44,584 KB
testcase_37 AC 218 ms
44,876 KB
testcase_38 AC 217 ms
44,632 KB
testcase_39 AC 216 ms
44,832 KB
testcase_40 AC 227 ms
44,784 KB
testcase_41 AC 221 ms
44,700 KB
testcase_42 AC 222 ms
44,688 KB
testcase_43 AC 196 ms
44,648 KB
testcase_44 AC 194 ms
44,648 KB
testcase_45 AC 193 ms
44,320 KB
testcase_46 AC 219 ms
44,808 KB
testcase_47 AC 223 ms
44,872 KB
testcase_48 AC 204 ms
44,104 KB
testcase_49 AC 205 ms
44,624 KB
testcase_50 AC 216 ms
44,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int one = 0;
        int two = 0;
        int other = 0;
        long ans = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (x == 1) {
                ans += one * 2 + two * 3 + other * 2;
                one++;
            } else if (x == 2) {
                ans += one * 3 + two + other;
                two++;
            } else {
                ans += one * 2 + two + other;
                other++;
            }
        }
        System.out.println(ans);
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0