結果

問題 No.1470 Mex Sum
ユーザー tatt61880tatt61880
提出日時 2021-04-09 21:40:42
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 147,880 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-09-16 12:29:01
合計ジャッジ時間 8,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 11 ms
5,376 KB
testcase_03 AC 11 ms
5,376 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 12 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 12 ms
5,376 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 112 ms
7,168 KB
testcase_13 AC 112 ms
7,040 KB
testcase_14 AC 112 ms
7,040 KB
testcase_15 AC 111 ms
7,040 KB
testcase_16 AC 109 ms
6,912 KB
testcase_17 AC 107 ms
6,944 KB
testcase_18 AC 108 ms
7,040 KB
testcase_19 AC 110 ms
7,040 KB
testcase_20 AC 109 ms
6,912 KB
testcase_21 AC 115 ms
7,168 KB
testcase_22 AC 115 ms
7,040 KB
testcase_23 AC 115 ms
7,168 KB
testcase_24 AC 114 ms
7,168 KB
testcase_25 AC 114 ms
7,168 KB
testcase_26 AC 114 ms
7,168 KB
testcase_27 AC 112 ms
7,168 KB
testcase_28 AC 114 ms
7,040 KB
testcase_29 AC 113 ms
7,168 KB
testcase_30 AC 114 ms
7,168 KB
testcase_31 AC 113 ms
7,040 KB
testcase_32 AC 115 ms
7,168 KB
testcase_33 AC 113 ms
7,168 KB
testcase_34 AC 115 ms
7,168 KB
testcase_35 AC 112 ms
7,040 KB
testcase_36 AC 116 ms
7,168 KB
testcase_37 AC 62 ms
5,376 KB
testcase_38 AC 61 ms
5,376 KB
testcase_39 AC 60 ms
5,376 KB
testcase_40 AC 62 ms
5,376 KB
testcase_41 AC 63 ms
5,376 KB
testcase_42 AC 63 ms
5,376 KB
testcase_43 AC 62 ms
5,376 KB
testcase_44 AC 63 ms
5,376 KB
testcase_45 AC 62 ms
5,376 KB
testcase_46 AC 62 ms
5,376 KB
testcase_47 AC 63 ms
5,376 KB
testcase_48 AC 63 ms
5,376 KB
testcase_49 AC 63 ms
5,376 KB
testcase_50 AC 63 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var a: []int :: #[n]int
	var map: dict<int, int> :: #dict<int, int>
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
		do map.add(a[i], map.get(a[i], &) + 1)
	end for
	
	var ans: int :: n * (n - 1) / 2
	var n1: int :: map.get(1, &)
	var n2: int :: map.get(2, &)
	var n3: int :: n - n1 - n2
	do ans :+ n1 * (n1 - 1) / 2
	do ans :+ n1 * n2 * 2
	do ans :+ n1 * n3
	do cui@print("\{ans}\n")
end func
0