結果

問題 No.1470 Mex Sum
ユーザー raven7959raven7959
提出日時 2021-10-11 15:57:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 99,216 KB
最終ジャッジ日時 2024-09-15 16:31:59
合計ジャッジ時間 6,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,972 KB
testcase_01 AC 38 ms
53,352 KB
testcase_02 AC 43 ms
61,764 KB
testcase_03 AC 43 ms
61,144 KB
testcase_04 AC 43 ms
62,492 KB
testcase_05 AC 43 ms
61,976 KB
testcase_06 AC 43 ms
61,724 KB
testcase_07 AC 43 ms
63,068 KB
testcase_08 AC 44 ms
63,232 KB
testcase_09 AC 43 ms
62,220 KB
testcase_10 AC 43 ms
62,488 KB
testcase_11 AC 43 ms
61,588 KB
testcase_12 AC 78 ms
98,740 KB
testcase_13 AC 78 ms
97,844 KB
testcase_14 AC 77 ms
97,852 KB
testcase_15 AC 77 ms
98,276 KB
testcase_16 AC 76 ms
98,600 KB
testcase_17 AC 77 ms
97,760 KB
testcase_18 AC 77 ms
97,120 KB
testcase_19 AC 77 ms
97,592 KB
testcase_20 AC 76 ms
98,140 KB
testcase_21 AC 77 ms
98,732 KB
testcase_22 AC 77 ms
98,152 KB
testcase_23 AC 77 ms
98,572 KB
testcase_24 AC 78 ms
99,152 KB
testcase_25 AC 77 ms
98,844 KB
testcase_26 AC 76 ms
97,748 KB
testcase_27 AC 76 ms
99,092 KB
testcase_28 AC 77 ms
97,376 KB
testcase_29 AC 77 ms
99,216 KB
testcase_30 AC 77 ms
98,620 KB
testcase_31 AC 77 ms
98,160 KB
testcase_32 AC 77 ms
98,356 KB
testcase_33 AC 77 ms
98,740 KB
testcase_34 AC 76 ms
98,192 KB
testcase_35 AC 77 ms
98,464 KB
testcase_36 AC 77 ms
98,120 KB
testcase_37 AC 70 ms
96,232 KB
testcase_38 AC 72 ms
95,688 KB
testcase_39 AC 72 ms
97,124 KB
testcase_40 AC 74 ms
96,056 KB
testcase_41 AC 73 ms
96,180 KB
testcase_42 AC 74 ms
96,736 KB
testcase_43 AC 73 ms
96,164 KB
testcase_44 AC 74 ms
96,036 KB
testcase_45 AC 73 ms
97,344 KB
testcase_46 AC 73 ms
96,920 KB
testcase_47 AC 74 ms
96,740 KB
testcase_48 AC 74 ms
95,244 KB
testcase_49 AC 74 ms
96,792 KB
testcase_50 AC 74 ms
95,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
cnt1=A.count(1)
cnt2=A.count(2)
ans=0
ans+=cnt1*(cnt1-1)+3*cnt1*cnt2+2*cnt1*(N-cnt1-cnt2)+(N-cnt1)*(N-cnt1-1)//2
print(ans)
0