結果

問題 No.1470 Mex Sum
ユーザー KazunKazun
提出日時 2021-04-09 21:28:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 99,544 KB
最終ジャッジ日時 2024-06-25 04:11:21
合計ジャッジ時間 5,186 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,328 KB
testcase_01 AC 36 ms
53,096 KB
testcase_02 AC 41 ms
61,696 KB
testcase_03 AC 41 ms
61,376 KB
testcase_04 AC 42 ms
62,600 KB
testcase_05 AC 42 ms
62,508 KB
testcase_06 AC 42 ms
61,556 KB
testcase_07 AC 42 ms
62,676 KB
testcase_08 AC 42 ms
61,960 KB
testcase_09 AC 42 ms
63,496 KB
testcase_10 AC 43 ms
62,324 KB
testcase_11 AC 43 ms
61,948 KB
testcase_12 AC 78 ms
97,604 KB
testcase_13 AC 76 ms
98,936 KB
testcase_14 AC 76 ms
98,368 KB
testcase_15 AC 76 ms
98,040 KB
testcase_16 AC 75 ms
98,036 KB
testcase_17 AC 75 ms
97,140 KB
testcase_18 AC 74 ms
98,372 KB
testcase_19 AC 75 ms
98,220 KB
testcase_20 AC 74 ms
98,040 KB
testcase_21 AC 75 ms
98,092 KB
testcase_22 AC 76 ms
98,504 KB
testcase_23 AC 77 ms
97,696 KB
testcase_24 AC 76 ms
98,648 KB
testcase_25 AC 77 ms
97,624 KB
testcase_26 AC 77 ms
98,548 KB
testcase_27 AC 76 ms
98,772 KB
testcase_28 AC 76 ms
98,700 KB
testcase_29 AC 77 ms
99,544 KB
testcase_30 AC 76 ms
97,964 KB
testcase_31 AC 77 ms
97,936 KB
testcase_32 AC 77 ms
98,776 KB
testcase_33 AC 76 ms
98,372 KB
testcase_34 AC 76 ms
99,032 KB
testcase_35 AC 76 ms
99,156 KB
testcase_36 AC 77 ms
97,912 KB
testcase_37 AC 71 ms
97,524 KB
testcase_38 AC 71 ms
95,924 KB
testcase_39 AC 71 ms
96,116 KB
testcase_40 AC 74 ms
96,260 KB
testcase_41 AC 73 ms
96,060 KB
testcase_42 AC 72 ms
96,788 KB
testcase_43 AC 73 ms
97,520 KB
testcase_44 AC 72 ms
97,292 KB
testcase_45 AC 74 ms
95,880 KB
testcase_46 AC 74 ms
95,756 KB
testcase_47 AC 73 ms
96,148 KB
testcase_48 AC 76 ms
96,340 KB
testcase_49 AC 73 ms
95,972 KB
testcase_50 AC 74 ms
95,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

x=A.count(1)
y=A.count(2)
z=N-(x+y)

X=2*x*(x-1)//2+3*x*y+2*x*z
X+=y*(y-1)//2+y*z
X+=z*(z-1)//2

print(X)
0