結果

問題 No.1470 Mex Sum
ユーザー ああいいああいい
提出日時 2021-12-06 11:01:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,008 KB
最終ジャッジ日時 2024-07-07 08:52:13
合計ジャッジ時間 6,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 38 ms
11,392 KB
testcase_03 AC 38 ms
11,392 KB
testcase_04 AC 39 ms
11,392 KB
testcase_05 AC 38 ms
11,264 KB
testcase_06 AC 39 ms
11,392 KB
testcase_07 AC 38 ms
11,392 KB
testcase_08 AC 39 ms
11,264 KB
testcase_09 AC 38 ms
11,392 KB
testcase_10 AC 38 ms
11,392 KB
testcase_11 AC 39 ms
11,392 KB
testcase_12 AC 112 ms
17,864 KB
testcase_13 AC 110 ms
18,020 KB
testcase_14 AC 112 ms
17,792 KB
testcase_15 AC 114 ms
18,096 KB
testcase_16 AC 110 ms
17,876 KB
testcase_17 AC 110 ms
17,824 KB
testcase_18 AC 111 ms
17,668 KB
testcase_19 AC 110 ms
18,008 KB
testcase_20 AC 110 ms
17,740 KB
testcase_21 AC 113 ms
18,888 KB
testcase_22 AC 114 ms
18,292 KB
testcase_23 AC 115 ms
19,008 KB
testcase_24 AC 113 ms
18,148 KB
testcase_25 AC 114 ms
18,160 KB
testcase_26 AC 112 ms
18,156 KB
testcase_27 AC 116 ms
18,268 KB
testcase_28 AC 114 ms
18,996 KB
testcase_29 AC 114 ms
18,276 KB
testcase_30 AC 113 ms
18,276 KB
testcase_31 AC 113 ms
18,156 KB
testcase_32 AC 115 ms
18,284 KB
testcase_33 AC 116 ms
18,080 KB
testcase_34 AC 115 ms
18,864 KB
testcase_35 AC 115 ms
18,144 KB
testcase_36 AC 113 ms
18,868 KB
testcase_37 AC 98 ms
14,468 KB
testcase_38 AC 105 ms
14,468 KB
testcase_39 AC 104 ms
14,472 KB
testcase_40 AC 101 ms
14,592 KB
testcase_41 AC 103 ms
14,592 KB
testcase_42 AC 106 ms
14,464 KB
testcase_43 AC 104 ms
14,464 KB
testcase_44 AC 104 ms
14,592 KB
testcase_45 AC 101 ms
14,592 KB
testcase_46 AC 106 ms
14,596 KB
testcase_47 AC 104 ms
14,592 KB
testcase_48 AC 105 ms
14,596 KB
testcase_49 AC 105 ms
14,592 KB
testcase_50 AC 107 ms
14,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))

count1 = 0
count2 = 0
count = 0
for i in A:
    if i == 1:count1 += 1
    elif i == 2:count2 += 1
    else:count += 1
S = count1 * (count1 - 1) + 3 * count1 * count2 + 2 * count1 * count + count2 * (count2 - 1) // 2 + count2 * count + count * (count-1) // 2
print(S)
0