結果

問題 No.1470 Mex Sum
ユーザー ks2mks2m
提出日時 2021-04-09 21:29:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 77,196 KB
実行使用メモリ 66,876 KB
最終ジャッジ日時 2024-06-25 04:14:09
合計ジャッジ時間 16,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,320 KB
testcase_01 AC 52 ms
50,292 KB
testcase_02 AC 102 ms
52,020 KB
testcase_03 AC 102 ms
51,788 KB
testcase_04 AC 101 ms
51,988 KB
testcase_05 AC 99 ms
51,932 KB
testcase_06 AC 102 ms
51,608 KB
testcase_07 AC 102 ms
51,984 KB
testcase_08 AC 104 ms
51,968 KB
testcase_09 AC 100 ms
51,924 KB
testcase_10 AC 104 ms
51,904 KB
testcase_11 AC 101 ms
51,668 KB
testcase_12 AC 250 ms
65,680 KB
testcase_13 AC 254 ms
65,680 KB
testcase_14 AC 251 ms
65,600 KB
testcase_15 AC 253 ms
65,224 KB
testcase_16 AC 252 ms
65,980 KB
testcase_17 AC 259 ms
66,192 KB
testcase_18 AC 259 ms
66,100 KB
testcase_19 AC 262 ms
66,060 KB
testcase_20 AC 259 ms
65,988 KB
testcase_21 AC 253 ms
65,816 KB
testcase_22 AC 288 ms
66,856 KB
testcase_23 AC 290 ms
66,224 KB
testcase_24 AC 286 ms
66,876 KB
testcase_25 AC 255 ms
65,836 KB
testcase_26 AC 260 ms
65,980 KB
testcase_27 AC 257 ms
66,076 KB
testcase_28 AC 263 ms
65,604 KB
testcase_29 AC 252 ms
65,672 KB
testcase_30 AC 237 ms
66,264 KB
testcase_31 AC 295 ms
66,516 KB
testcase_32 AC 253 ms
65,532 KB
testcase_33 AC 292 ms
66,684 KB
testcase_34 AC 255 ms
65,616 KB
testcase_35 AC 256 ms
66,040 KB
testcase_36 AC 247 ms
65,560 KB
testcase_37 AC 222 ms
63,644 KB
testcase_38 AC 220 ms
63,524 KB
testcase_39 AC 225 ms
63,524 KB
testcase_40 AC 222 ms
63,732 KB
testcase_41 AC 222 ms
63,708 KB
testcase_42 AC 225 ms
63,640 KB
testcase_43 AC 228 ms
63,484 KB
testcase_44 AC 229 ms
63,792 KB
testcase_45 AC 225 ms
63,796 KB
testcase_46 AC 216 ms
63,476 KB
testcase_47 AC 217 ms
63,648 KB
testcase_48 AC 224 ms
63,604 KB
testcase_49 AC 221 ms
63,844 KB
testcase_50 AC 222 ms
63,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		long[] c = new long[3];
		for (int i = 0; i < n; i++) {
			if (a[i] <= 2) {
				c[a[i]]++;
			}
		}
		c[0] = n - c[1] - c[2];

		long ans = 0;
		ans += c[0] * (c[0] - 1) / 2;
		ans += c[0] * c[1] * 2;
		ans += c[0] * c[2];
		ans += c[1] * (c[1] - 1) / 2 * 2;
		ans += c[1] * c[2] * 3;
		ans += c[2] * (c[2] - 1) / 2;
		System.out.println(ans);
	}
}
0