結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー vwxyzvwxyz
提出日時 2024-04-19 19:12:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 356 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,828 KB
最終ジャッジ日時 2024-10-11 11:25:42
合計ジャッジ時間 9,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
11,008 KB
testcase_01 AC 641 ms
10,752 KB
testcase_02 AC 69 ms
10,624 KB
testcase_03 AC 776 ms
10,752 KB
testcase_04 AC 849 ms
10,880 KB
testcase_05 AC 109 ms
10,880 KB
testcase_06 AC 1,408 ms
11,008 KB
testcase_07 AC 1,280 ms
10,880 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 TLE -
testcase_18 AC 590 ms
10,880 KB
testcase_19 AC 1,673 ms
11,008 KB
testcase_20 AC 1,119 ms
10,880 KB
testcase_21 AC 209 ms
10,752 KB
testcase_22 AC 63 ms
10,752 KB
testcase_23 AC 34 ms
10,880 KB
testcase_24 AC 40 ms
10,752 KB
testcase_25 AC 42 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 40 ms
10,752 KB
testcase_29 AC 50 ms
10,752 KB
testcase_30 AC 37 ms
10,752 KB
testcase_31 AC 37 ms
10,880 KB
testcase_32 AC 45 ms
10,880 KB
testcase_33 AC 1,280 ms
10,880 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 490 ms
10,880 KB
testcase_37 AC 1,355 ms
10,880 KB
testcase_38 AC 1,385 ms
11,136 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 971 ms
10,880 KB
testcase_45 TLE -
testcase_46 AC 316 ms
10,880 KB
testcase_47 AC 1,127 ms
11,008 KB
testcase_48 AC 798 ms
10,880 KB
testcase_49 AC 975 ms
10,752 KB
testcase_50 AC 1,134 ms
10,880 KB
testcase_51 AC 1,388 ms
11,136 KB
testcase_52 AC 1,370 ms
10,880 KB
testcase_53 TLE -
testcase_54 AC 472 ms
11,008 KB
testcase_55 AC 114 ms
10,752 KB
testcase_56 AC 1,797 ms
10,880 KB
testcase_57 AC 1,218 ms
10,880 KB
testcase_58 AC 30 ms
10,752 KB
testcase_59 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
S=[0]+[s=="E" for s in input()]
for i in range(1,N+1):
    S[i]+=S[i-1]
A=[0]+list(map(int,input().split()))
for i in range(1,N+1):
    A[i]+=A[i-1]
Q=int(input())
K=list(map(int,input().split()))
for k in K:
    l=0
    ans=0
    for r in range(N+1):
        while A[r]-A[l]>k:
            l+=1
        ans=max(ans,S[r]-S[l])
    print(ans)
0