結果

問題 No.1470 Mex Sum
ユーザー Super SolenoidSuper Solenoid
提出日時 2021-05-03 00:32:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 237 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,428 KB
最終ジャッジ日時 2024-07-21 09:40:12
合計ジャッジ時間 7,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 34 ms
10,752 KB
testcase_02 AC 41 ms
11,264 KB
testcase_03 AC 42 ms
11,392 KB
testcase_04 AC 42 ms
11,392 KB
testcase_05 AC 41 ms
11,392 KB
testcase_06 AC 42 ms
11,264 KB
testcase_07 AC 42 ms
11,392 KB
testcase_08 AC 42 ms
11,520 KB
testcase_09 AC 42 ms
11,392 KB
testcase_10 AC 40 ms
11,392 KB
testcase_11 AC 42 ms
11,392 KB
testcase_12 AC 127 ms
17,884 KB
testcase_13 AC 126 ms
18,160 KB
testcase_14 AC 128 ms
18,040 KB
testcase_15 AC 130 ms
18,108 KB
testcase_16 AC 126 ms
18,112 KB
testcase_17 AC 123 ms
17,840 KB
testcase_18 AC 124 ms
17,680 KB
testcase_19 AC 125 ms
18,144 KB
testcase_20 AC 125 ms
18,124 KB
testcase_21 AC 125 ms
18,012 KB
testcase_22 AC 129 ms
18,304 KB
testcase_23 AC 130 ms
18,320 KB
testcase_24 AC 131 ms
18,160 KB
testcase_25 AC 131 ms
18,428 KB
testcase_26 AC 131 ms
18,288 KB
testcase_27 AC 128 ms
18,156 KB
testcase_28 AC 129 ms
18,316 KB
testcase_29 AC 125 ms
18,168 KB
testcase_30 AC 126 ms
18,288 KB
testcase_31 AC 124 ms
18,416 KB
testcase_32 AC 125 ms
18,424 KB
testcase_33 AC 125 ms
18,424 KB
testcase_34 AC 129 ms
18,312 KB
testcase_35 AC 129 ms
18,152 KB
testcase_36 AC 131 ms
18,184 KB
testcase_37 AC 114 ms
14,016 KB
testcase_38 AC 113 ms
13,756 KB
testcase_39 AC 113 ms
13,888 KB
testcase_40 AC 121 ms
14,012 KB
testcase_41 AC 121 ms
13,888 KB
testcase_42 AC 118 ms
14,016 KB
testcase_43 AC 119 ms
14,020 KB
testcase_44 AC 120 ms
14,012 KB
testcase_45 AC 119 ms
13,996 KB
testcase_46 AC 117 ms
13,888 KB
testcase_47 AC 118 ms
13,888 KB
testcase_48 AC 120 ms
13,760 KB
testcase_49 AC 117 ms
14,012 KB
testcase_50 AC 117 ms
13,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B = [int(s) for s in A if s>2]
C = [int(s) for s in A if s==2]
D = [int(s) for s in A if s<2]

b = len(B)
c = len(C)
d = len(D)

mex = (b+c)*(b+c-1)/2 +d*(d+2*b+3*c-1)
print(int(mex))
0