結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー pekempeypekempey
提出日時 2019-11-29 22:02:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,984 KB
最終ジャッジ日時 2024-09-14 05:43:05
合計ジャッジ時間 8,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
73,088 KB
testcase_01 AC 84 ms
73,984 KB
testcase_02 AC 60 ms
65,792 KB
testcase_03 AC 84 ms
72,064 KB
testcase_04 AC 97 ms
75,392 KB
testcase_05 AC 67 ms
69,376 KB
testcase_06 AC 123 ms
76,928 KB
testcase_07 AC 123 ms
76,984 KB
testcase_08 AC 179 ms
76,552 KB
testcase_09 AC 145 ms
76,544 KB
testcase_10 AC 151 ms
76,728 KB
testcase_11 AC 162 ms
73,236 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 37 ms
51,712 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 39 ms
51,584 KB
testcase_17 AC 116 ms
65,408 KB
testcase_18 AC 111 ms
76,568 KB
testcase_19 AC 147 ms
74,496 KB
testcase_20 AC 121 ms
72,448 KB
testcase_21 AC 79 ms
71,936 KB
testcase_22 AC 75 ms
72,960 KB
testcase_23 AC 56 ms
64,000 KB
testcase_24 AC 59 ms
65,024 KB
testcase_25 AC 63 ms
66,560 KB
testcase_26 AC 44 ms
59,136 KB
testcase_27 AC 38 ms
52,352 KB
testcase_28 AC 61 ms
67,200 KB
testcase_29 AC 61 ms
64,768 KB
testcase_30 AC 56 ms
63,744 KB
testcase_31 AC 60 ms
65,664 KB
testcase_32 AC 77 ms
73,628 KB
testcase_33 AC 133 ms
76,544 KB
testcase_34 AC 182 ms
76,612 KB
testcase_35 AC 160 ms
76,664 KB
testcase_36 AC 112 ms
76,776 KB
testcase_37 AC 164 ms
74,252 KB
testcase_38 AC 131 ms
72,064 KB
testcase_39 AC 193 ms
76,416 KB
testcase_40 AC 195 ms
76,544 KB
testcase_41 AC 204 ms
76,592 KB
testcase_42 AC 154 ms
71,552 KB
testcase_43 AC 195 ms
76,416 KB
testcase_44 AC 127 ms
76,816 KB
testcase_45 AC 195 ms
76,544 KB
testcase_46 AC 97 ms
76,416 KB
testcase_47 AC 116 ms
70,784 KB
testcase_48 AC 109 ms
75,008 KB
testcase_49 AC 112 ms
72,320 KB
testcase_50 AC 123 ms
73,088 KB
testcase_51 AC 145 ms
76,404 KB
testcase_52 AC 144 ms
76,444 KB
testcase_53 AC 182 ms
76,624 KB
testcase_54 AC 114 ms
76,456 KB
testcase_55 AC 87 ms
76,544 KB
testcase_56 AC 166 ms
76,564 KB
testcase_57 AC 133 ms
76,712 KB
testcase_58 AC 37 ms
52,096 KB
testcase_59 AC 38 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for k in K:
  j = 0
  s = 0
  c = 0
  ans = 0
  for i in range(N):
    if j < i:
      j = i
      s = 0
      c = 0
    while j < N and s + A[j] <= k:
      s += A[j]
      if S[j] == 'E':
        c += 1
      j += 1
    ans = max(ans, c)
    if S[i] == 'E':
      c -= 1
    s -= A[i]
  print(ans)
    
    
  
0