結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー hedwig100hedwig100
提出日時 2020-04-13 15:22:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 971 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-09-25 01:15:39
合計ジャッジ時間 39,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
11,008 KB
testcase_01 AC 329 ms
11,136 KB
testcase_02 AC 50 ms
11,008 KB
testcase_03 AC 366 ms
11,136 KB
testcase_04 AC 414 ms
11,136 KB
testcase_05 AC 69 ms
11,008 KB
testcase_06 AC 839 ms
11,136 KB
testcase_07 AC 764 ms
11,136 KB
testcase_08 AC 1,799 ms
11,264 KB
testcase_09 AC 1,090 ms
11,136 KB
testcase_10 AC 1,317 ms
11,008 KB
testcase_11 AC 1,632 ms
11,136 KB
testcase_12 AC 32 ms
10,880 KB
testcase_13 AC 32 ms
10,880 KB
testcase_14 AC 32 ms
10,880 KB
testcase_15 AC 32 ms
10,880 KB
testcase_16 AC 32 ms
10,880 KB
testcase_17 TLE -
testcase_18 AC 449 ms
11,136 KB
testcase_19 AC 1,236 ms
11,136 KB
testcase_20 AC 835 ms
11,008 KB
testcase_21 AC 152 ms
11,008 KB
testcase_22 AC 56 ms
11,008 KB
testcase_23 AC 34 ms
10,880 KB
testcase_24 AC 40 ms
10,880 KB
testcase_25 AC 40 ms
10,880 KB
testcase_26 AC 33 ms
10,880 KB
testcase_27 AC 32 ms
10,880 KB
testcase_28 AC 37 ms
10,880 KB
testcase_29 AC 43 ms
11,008 KB
testcase_30 AC 37 ms
10,880 KB
testcase_31 AC 36 ms
10,880 KB
testcase_32 AC 41 ms
11,008 KB
testcase_33 AC 765 ms
11,136 KB
testcase_34 AC 1,395 ms
11,264 KB
testcase_35 AC 1,224 ms
11,136 KB
testcase_36 AC 294 ms
10,880 KB
testcase_37 AC 779 ms
11,136 KB
testcase_38 AC 807 ms
11,008 KB
testcase_39 AC 1,463 ms
11,136 KB
testcase_40 AC 1,590 ms
11,264 KB
testcase_41 AC 1,580 ms
11,264 KB
testcase_42 AC 1,192 ms
11,136 KB
testcase_43 AC 1,650 ms
11,264 KB
testcase_44 AC 570 ms
11,136 KB
testcase_45 AC 1,618 ms
11,264 KB
testcase_46 AC 193 ms
11,136 KB
testcase_47 AC 669 ms
11,136 KB
testcase_48 AC 486 ms
11,136 KB
testcase_49 AC 575 ms
11,136 KB
testcase_50 AC 719 ms
11,136 KB
testcase_51 AC 863 ms
11,136 KB
testcase_52 AC 842 ms
11,136 KB
testcase_53 AC 1,400 ms
11,136 KB
testcase_54 AC 299 ms
11,008 KB
testcase_55 AC 80 ms
11,008 KB
testcase_56 AC 1,108 ms
11,136 KB
testcase_57 AC 717 ms
11,136 KB
testcase_58 AC 32 ms
10,880 KB
testcase_59 AC 32 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7
INF = 10 ** 10
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from collections import deque
from heapq import heapify,heappush,heappop
from copy import deepcopy

def main():
    n = int(input())
    s = input()
    a = list(map(int,input().split()))
    q = int(input())
    query = list(map(int,input().split()))

    for index in range(q):
        t = query[index]
        r = 0
        tot = 0
        ans = 0
        cnt = 0
        for l in range(n):
            while r < n and tot + a[r] <= t:
                if s[r] == 'E':
                    cnt += 1
                tot += a[r]
                r += 1
            
            ans = max(ans,cnt)
            if l == r:
                r += 1
                cnt = 0
                tot = 0
            else:
                if s[l] == 'E':
                    cnt -= 1
                tot -= a[l]
        
        print(ans)

if __name__ == '__main__':
    main()
0