結果

問題 No.1470 Mex Sum
ユーザー H20H20
提出日時 2021-04-09 22:05:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 172 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-06-25 05:34:14
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,248 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 57 ms
65,024 KB
testcase_03 AC 58 ms
65,408 KB
testcase_04 AC 57 ms
65,408 KB
testcase_05 AC 57 ms
65,152 KB
testcase_06 AC 58 ms
65,280 KB
testcase_07 AC 57 ms
65,152 KB
testcase_08 AC 57 ms
65,536 KB
testcase_09 AC 57 ms
65,152 KB
testcase_10 AC 59 ms
65,280 KB
testcase_11 AC 59 ms
65,536 KB
testcase_12 AC 110 ms
105,984 KB
testcase_13 AC 109 ms
106,496 KB
testcase_14 AC 110 ms
105,728 KB
testcase_15 AC 110 ms
106,112 KB
testcase_16 AC 109 ms
106,368 KB
testcase_17 AC 108 ms
105,984 KB
testcase_18 AC 110 ms
106,752 KB
testcase_19 AC 110 ms
106,112 KB
testcase_20 AC 109 ms
106,624 KB
testcase_21 AC 110 ms
105,984 KB
testcase_22 AC 110 ms
105,984 KB
testcase_23 AC 109 ms
105,344 KB
testcase_24 AC 109 ms
105,984 KB
testcase_25 AC 109 ms
105,728 KB
testcase_26 AC 109 ms
105,216 KB
testcase_27 AC 109 ms
105,856 KB
testcase_28 AC 110 ms
105,984 KB
testcase_29 AC 109 ms
105,472 KB
testcase_30 AC 107 ms
105,728 KB
testcase_31 AC 110 ms
105,984 KB
testcase_32 AC 109 ms
105,728 KB
testcase_33 AC 109 ms
105,856 KB
testcase_34 AC 109 ms
106,240 KB
testcase_35 AC 109 ms
105,856 KB
testcase_36 AC 108 ms
105,728 KB
testcase_37 AC 93 ms
101,120 KB
testcase_38 AC 94 ms
100,864 KB
testcase_39 AC 94 ms
100,864 KB
testcase_40 AC 95 ms
101,248 KB
testcase_41 AC 93 ms
100,736 KB
testcase_42 AC 93 ms
100,864 KB
testcase_43 AC 92 ms
100,864 KB
testcase_44 AC 94 ms
100,992 KB
testcase_45 AC 93 ms
100,992 KB
testcase_46 AC 93 ms
100,992 KB
testcase_47 AC 93 ms
100,864 KB
testcase_48 AC 95 ms
101,248 KB
testcase_49 AC 96 ms
100,992 KB
testcase_50 AC 93 ms
100,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
A = list(map(int, input().split())) 
CA = collections.Counter(A)
print( N*(N-1)//2 + CA[1]*(N-CA[1]) + CA[1]*(CA[1]-1)//2 + CA[1]*CA[2])
0