結果

問題 No.1470 Mex Sum
ユーザー da_abda_ab
提出日時 2021-04-13 20:36:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,135 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 63,816 KB
最終ジャッジ日時 2024-06-30 01:08:11
合計ジャッジ時間 58,329 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,009 ms
58,040 KB
testcase_01 AC 986 ms
57,668 KB
testcase_02 AC 1,006 ms
58,172 KB
testcase_03 AC 1,135 ms
57,792 KB
testcase_04 AC 1,040 ms
57,408 KB
testcase_05 AC 1,024 ms
58,188 KB
testcase_06 AC 994 ms
57,912 KB
testcase_07 AC 995 ms
57,788 KB
testcase_08 AC 1,008 ms
57,664 KB
testcase_09 AC 1,001 ms
57,672 KB
testcase_10 AC 992 ms
57,792 KB
testcase_11 AC 993 ms
57,672 KB
testcase_12 AC 1,078 ms
63,424 KB
testcase_13 AC 1,081 ms
63,692 KB
testcase_14 AC 1,087 ms
63,032 KB
testcase_15 AC 1,096 ms
63,552 KB
testcase_16 AC 1,100 ms
62,660 KB
testcase_17 AC 1,101 ms
63,164 KB
testcase_18 AC 1,063 ms
63,168 KB
testcase_19 AC 1,071 ms
63,164 KB
testcase_20 AC 1,081 ms
63,164 KB
testcase_21 AC 1,092 ms
63,040 KB
testcase_22 AC 1,092 ms
63,036 KB
testcase_23 AC 1,083 ms
63,556 KB
testcase_24 AC 1,090 ms
63,428 KB
testcase_25 AC 1,098 ms
63,420 KB
testcase_26 AC 1,097 ms
63,680 KB
testcase_27 AC 1,106 ms
63,420 KB
testcase_28 AC 1,081 ms
63,292 KB
testcase_29 AC 1,097 ms
63,168 KB
testcase_30 AC 1,092 ms
62,784 KB
testcase_31 AC 1,089 ms
63,296 KB
testcase_32 AC 1,102 ms
63,424 KB
testcase_33 AC 1,096 ms
63,428 KB
testcase_34 AC 1,096 ms
63,164 KB
testcase_35 AC 1,086 ms
63,816 KB
testcase_36 AC 1,082 ms
63,552 KB
testcase_37 AC 1,054 ms
59,456 KB
testcase_38 AC 1,055 ms
59,336 KB
testcase_39 AC 1,059 ms
59,428 KB
testcase_40 AC 1,069 ms
59,964 KB
testcase_41 AC 1,058 ms
59,452 KB
testcase_42 AC 1,044 ms
59,588 KB
testcase_43 AC 1,035 ms
59,836 KB
testcase_44 AC 1,053 ms
59,964 KB
testcase_45 AC 1,078 ms
59,840 KB
testcase_46 AC 1,074 ms
59,960 KB
testcase_47 AC 1,068 ms
59,940 KB
testcase_48 AC 1,062 ms
59,960 KB
testcase_49 AC 1,063 ms
59,964 KB
testcase_50 AC 1,066 ms
60,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1470 Mex Sum

from scipy.special import comb
from sys import stdin

n=int(stdin.readline())
a=tuple(map(int,stdin.readline().split()))

classifiedA=[0]*(3+1)
for e in a:
    if e==1:
        classifiedA[1]+=1
    elif e==2:
        classifiedA[2]+=1
    else:
        classifiedA[3]+=1
        
sumA=0
sumA+=3*classifiedA[1]*classifiedA[2]
sumA+=2*(comb(classifiedA[1],2,exact=True)+(classifiedA[1]*classifiedA[3]))
sumA+=1*(comb(classifiedA[2],2,exact=True)+comb(classifiedA[3],2,exact=True)+(classifiedA[2]*classifiedA[3]))
print(sumA)


0