結果

問題 No.1470 Mex Sum
ユーザー pluto77pluto77
提出日時 2021-07-17 10:14:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,924 KB
最終ジャッジ日時 2024-07-06 21:48:25
合計ジャッジ時間 6,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,368 KB
testcase_01 AC 25 ms
10,496 KB
testcase_02 AC 31 ms
11,264 KB
testcase_03 AC 31 ms
11,264 KB
testcase_04 AC 35 ms
11,264 KB
testcase_05 AC 31 ms
11,520 KB
testcase_06 AC 30 ms
11,264 KB
testcase_07 AC 31 ms
11,392 KB
testcase_08 AC 31 ms
11,392 KB
testcase_09 AC 30 ms
11,392 KB
testcase_10 AC 30 ms
11,392 KB
testcase_11 AC 30 ms
11,264 KB
testcase_12 AC 84 ms
17,840 KB
testcase_13 AC 87 ms
17,896 KB
testcase_14 AC 84 ms
17,784 KB
testcase_15 AC 87 ms
17,960 KB
testcase_16 AC 88 ms
17,876 KB
testcase_17 AC 83 ms
17,696 KB
testcase_18 AC 88 ms
17,672 KB
testcase_19 AC 99 ms
18,004 KB
testcase_20 AC 87 ms
17,740 KB
testcase_21 AC 89 ms
18,924 KB
testcase_22 AC 89 ms
18,060 KB
testcase_23 AC 92 ms
18,876 KB
testcase_24 AC 88 ms
18,148 KB
testcase_25 AC 88 ms
18,156 KB
testcase_26 AC 89 ms
18,272 KB
testcase_27 AC 86 ms
18,140 KB
testcase_28 AC 89 ms
18,168 KB
testcase_29 AC 86 ms
18,276 KB
testcase_30 AC 89 ms
18,140 KB
testcase_31 AC 92 ms
18,144 KB
testcase_32 AC 93 ms
18,280 KB
testcase_33 AC 89 ms
18,152 KB
testcase_34 AC 86 ms
18,168 KB
testcase_35 AC 88 ms
18,012 KB
testcase_36 AC 88 ms
18,160 KB
testcase_37 AC 62 ms
14,592 KB
testcase_38 AC 63 ms
14,464 KB
testcase_39 AC 66 ms
14,588 KB
testcase_40 AC 68 ms
14,464 KB
testcase_41 AC 68 ms
14,592 KB
testcase_42 AC 70 ms
14,588 KB
testcase_43 AC 70 ms
14,460 KB
testcase_44 AC 70 ms
14,464 KB
testcase_45 AC 68 ms
14,592 KB
testcase_46 AC 69 ms
14,588 KB
testcase_47 AC 68 ms
14,460 KB
testcase_48 AC 69 ms
14,464 KB
testcase_49 AC 70 ms
14,592 KB
testcase_50 AC 69 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1470
n=int(input())
a=sorted(map(int,input().split()))
x=a.count(1)
y=a.count(2)
z=n-x-y
res=y*(y-1)//2+y*z+z*(z-1)//2
res+=2*(x*(x-1)//2+x*z)
res+=3*x*y
print(res)
0