結果

問題 No.1470 Mex Sum
ユーザー NoaSaberNoaSaber
提出日時 2021-04-09 22:26:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 109,824 KB
最終ジャッジ日時 2024-06-25 06:02:11
合計ジャッジ時間 7,420 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 67 ms
71,424 KB
testcase_03 AC 70 ms
71,936 KB
testcase_04 AC 68 ms
71,552 KB
testcase_05 AC 65 ms
71,424 KB
testcase_06 AC 65 ms
71,552 KB
testcase_07 AC 69 ms
71,296 KB
testcase_08 AC 68 ms
71,936 KB
testcase_09 AC 68 ms
71,936 KB
testcase_10 AC 70 ms
71,552 KB
testcase_11 AC 69 ms
72,064 KB
testcase_12 AC 122 ms
109,184 KB
testcase_13 AC 123 ms
109,312 KB
testcase_14 AC 123 ms
109,440 KB
testcase_15 AC 123 ms
108,800 KB
testcase_16 AC 123 ms
109,056 KB
testcase_17 AC 123 ms
109,184 KB
testcase_18 AC 123 ms
109,568 KB
testcase_19 AC 125 ms
109,312 KB
testcase_20 AC 117 ms
109,184 KB
testcase_21 AC 117 ms
109,056 KB
testcase_22 AC 118 ms
109,056 KB
testcase_23 AC 119 ms
109,312 KB
testcase_24 AC 119 ms
109,056 KB
testcase_25 AC 123 ms
109,184 KB
testcase_26 AC 124 ms
109,056 KB
testcase_27 AC 124 ms
109,056 KB
testcase_28 AC 119 ms
109,184 KB
testcase_29 AC 122 ms
109,056 KB
testcase_30 AC 123 ms
109,184 KB
testcase_31 AC 125 ms
109,056 KB
testcase_32 AC 121 ms
109,056 KB
testcase_33 AC 122 ms
109,056 KB
testcase_34 AC 121 ms
108,928 KB
testcase_35 AC 123 ms
109,056 KB
testcase_36 AC 122 ms
109,056 KB
testcase_37 AC 111 ms
109,824 KB
testcase_38 AC 111 ms
109,568 KB
testcase_39 AC 109 ms
109,568 KB
testcase_40 AC 120 ms
109,568 KB
testcase_41 AC 118 ms
109,568 KB
testcase_42 AC 116 ms
109,568 KB
testcase_43 AC 118 ms
109,568 KB
testcase_44 AC 127 ms
109,568 KB
testcase_45 AC 120 ms
109,440 KB
testcase_46 AC 117 ms
109,440 KB
testcase_47 AC 118 ms
109,568 KB
testcase_48 AC 117 ms
109,568 KB
testcase_49 AC 118 ms
109,568 KB
testcase_50 AC 116 ms
109,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
from collections import Counter
one,two=0,0
other=0
l=[[0]*3 for i in range(N+1)]
for i in range(N):
    l[i+1][0]=l[i][0]
    l[i+1][2]=l[i][2]
    l[i+1][1]=l[i][1]
    if A[i]==1:
        l[i+1][0]+=1
    elif A[i]==2:
        l[i+1][1]+=1
    else:
        l[i+1][2]+=1
ans=0
for i,j in enumerate(A):
    tmp_l=l[i]
    if j==1:
        ans+=tmp_l[0]*2+tmp_l[1]*3+tmp_l[2]*2
    elif j==2:
        ans+=tmp_l[0]*3+tmp_l[1]+tmp_l[2]
    else:
        ans+=tmp_l[0]*2+tmp_l[1]+tmp_l[2]
print(ans)
0