結果

問題 No.1470 Mex Sum
ユーザー harurunharurun
提出日時 2021-04-09 22:55:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 96 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,280 KB
最終ジャッジ日時 2024-06-25 06:39:08
合計ジャッジ時間 11,441 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 52 ms
12,416 KB
testcase_03 AC 50 ms
12,288 KB
testcase_04 AC 52 ms
12,416 KB
testcase_05 AC 49 ms
12,288 KB
testcase_06 AC 50 ms
12,416 KB
testcase_07 AC 50 ms
12,416 KB
testcase_08 AC 50 ms
12,416 KB
testcase_09 AC 51 ms
12,288 KB
testcase_10 AC 52 ms
12,384 KB
testcase_11 AC 51 ms
12,416 KB
testcase_12 AC 240 ms
27,820 KB
testcase_13 AC 237 ms
27,748 KB
testcase_14 AC 238 ms
27,628 KB
testcase_15 AC 241 ms
27,952 KB
testcase_16 AC 236 ms
27,600 KB
testcase_17 AC 235 ms
27,292 KB
testcase_18 AC 233 ms
27,272 KB
testcase_19 AC 235 ms
27,476 KB
testcase_20 AC 238 ms
27,456 KB
testcase_21 AC 246 ms
28,100 KB
testcase_22 AC 248 ms
28,268 KB
testcase_23 AC 245 ms
28,164 KB
testcase_24 AC 242 ms
28,256 KB
testcase_25 AC 244 ms
28,144 KB
testcase_26 AC 244 ms
28,264 KB
testcase_27 AC 240 ms
28,256 KB
testcase_28 AC 237 ms
28,280 KB
testcase_29 AC 245 ms
28,260 KB
testcase_30 AC 242 ms
28,124 KB
testcase_31 AC 243 ms
28,260 KB
testcase_32 AC 243 ms
28,260 KB
testcase_33 AC 245 ms
28,148 KB
testcase_34 AC 248 ms
28,276 KB
testcase_35 AC 243 ms
28,252 KB
testcase_36 AC 242 ms
28,148 KB
testcase_37 AC 198 ms
25,704 KB
testcase_38 AC 190 ms
25,712 KB
testcase_39 AC 193 ms
19,568 KB
testcase_40 AC 216 ms
25,708 KB
testcase_41 AC 221 ms
25,712 KB
testcase_42 AC 221 ms
25,712 KB
testcase_43 AC 220 ms
25,712 KB
testcase_44 AC 219 ms
25,712 KB
testcase_45 AC 218 ms
25,588 KB
testcase_46 AC 220 ms
25,708 KB
testcase_47 AC 221 ms
25,580 KB
testcase_48 AC 217 ms
25,708 KB
testcase_49 AC 218 ms
25,588 KB
testcase_50 AC 214 ms
25,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class INPUT:
  def __init__(self):
    self.l=open(0).read().split()[::-1]
    self.length=len(self.l)
    return

  def stream(self,k=1,f=int,f2=False):
    assert(-1<k)
    m=self.length
    if m==0 or m<k:
      raise Exception("There is no input!")
    elif f!=str:
      if k==0:
        self.length=0
        return list(map(f,self.l[::-1]))
      if k==1 and not f2:
        self.length-=1
        return f(self.l.pop())
      if k==1 and f2:
        self.length-=1
        return [f(self.l.pop())]
      ret=[]
      for _ in [0]*k:
        ret.append(f(self.l.pop()))
      self.length-=k
      return ret
    else:
      if k==0:
        self.length=0
        return self.l[::-1]
      if k==1 and not f2:
        self.length-=1
        return self.l.pop()
      if k==1 and f2:
        self.length-=1
        return [self.l.pop()]
      ret=[]
      for _ in [0]*k:
        ret.append(self.l.pop())
      self.length-=k
      return ret
pin=INPUT().stream

"""
pin(number[default:1],f[default:int],f2[default:False])
if number==0 -> return left all
listを変数で受け取るとき、必ずlistをTrueにすること。
"""

def main():
  N=pin(1)
  A=pin(0)
  d1=[0]
  d2=[0]
  for i in A:
    if i==1:
      d1.append(d1[-1]+1)
    else:
      d1.append(d1[-1])
    if i==2:
      d2.append(d2[-1]+1)
    else:
      d2.append(d2[-1])
  ans=0
  for i in range(N):
    s1=d1[-1]-d1[i]#1の個数
    s2=d2[-1]-d2[i]#2の個数
    t=N-i-1-s1-s2#それ以外の個数
    if A[i]==1:
      ans+=s1*2+s2*3+t*2
    elif A[i]==2:
      ans+=s1*3+s2+t
    else:
      ans+=s1*2+s2+t
  print(ans)
  return

main()

      
0