結果

問題 No.1470 Mex Sum
ユーザー convexineqconvexineq
提出日時 2021-04-09 21:29:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-06-25 04:12:28
合計ジャッジ時間 5,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 52 ms
63,232 KB
testcase_03 AC 50 ms
64,000 KB
testcase_04 AC 48 ms
64,384 KB
testcase_05 AC 48 ms
63,232 KB
testcase_06 AC 49 ms
64,000 KB
testcase_07 AC 49 ms
63,616 KB
testcase_08 AC 48 ms
64,512 KB
testcase_09 AC 49 ms
64,512 KB
testcase_10 AC 48 ms
64,512 KB
testcase_11 AC 48 ms
64,512 KB
testcase_12 AC 91 ms
106,984 KB
testcase_13 AC 89 ms
106,880 KB
testcase_14 AC 90 ms
106,624 KB
testcase_15 AC 88 ms
107,176 KB
testcase_16 AC 88 ms
106,368 KB
testcase_17 AC 90 ms
106,368 KB
testcase_18 AC 87 ms
106,088 KB
testcase_19 AC 90 ms
106,568 KB
testcase_20 AC 88 ms
106,240 KB
testcase_21 AC 89 ms
106,496 KB
testcase_22 AC 91 ms
106,880 KB
testcase_23 AC 92 ms
108,160 KB
testcase_24 AC 91 ms
106,880 KB
testcase_25 AC 93 ms
107,392 KB
testcase_26 AC 96 ms
107,648 KB
testcase_27 AC 90 ms
106,624 KB
testcase_28 AC 90 ms
107,304 KB
testcase_29 AC 92 ms
107,624 KB
testcase_30 AC 88 ms
107,648 KB
testcase_31 AC 91 ms
106,624 KB
testcase_32 AC 90 ms
106,624 KB
testcase_33 AC 90 ms
107,008 KB
testcase_34 AC 91 ms
106,624 KB
testcase_35 AC 91 ms
106,756 KB
testcase_36 AC 91 ms
107,008 KB
testcase_37 AC 84 ms
104,704 KB
testcase_38 AC 83 ms
104,576 KB
testcase_39 AC 82 ms
104,448 KB
testcase_40 AC 85 ms
104,448 KB
testcase_41 AC 85 ms
104,448 KB
testcase_42 AC 84 ms
104,192 KB
testcase_43 AC 86 ms
104,576 KB
testcase_44 AC 86 ms
104,320 KB
testcase_45 AC 86 ms
104,704 KB
testcase_46 AC 86 ms
104,576 KB
testcase_47 AC 85 ms
104,448 KB
testcase_48 AC 85 ms
104,320 KB
testcase_49 AC 84 ms
104,576 KB
testcase_50 AC 85 ms
104,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
r = [0,0,0,0]
for i in a:
    r[min(i,3)] += 1
ans = r[1]*(r[1]-1)//2 + r[1]*r[3] + 2*r[1]*r[2] + n*(n-1)//2
print(ans)
0