結果

問題 No.935 う し た ぷ に き あ く ん 笑 ビ - ム
ユーザー maspymaspy
提出日時 2020-02-02 15:43:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,744 KB
最終ジャッジ日時 2024-09-18 20:53:33
合計ジャッジ時間 45,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 672 ms
44,240 KB
testcase_07 WA -
testcase_08 AC 962 ms
44,364 KB
testcase_09 AC 811 ms
43,944 KB
testcase_10 AC 820 ms
44,352 KB
testcase_11 WA -
testcase_12 AC 540 ms
43,844 KB
testcase_13 AC 535 ms
44,488 KB
testcase_14 AC 541 ms
43,840 KB
testcase_15 WA -
testcase_16 AC 544 ms
44,104 KB
testcase_17 AC 951 ms
44,292 KB
testcase_18 AC 809 ms
44,100 KB
testcase_19 AC 659 ms
43,984 KB
testcase_20 AC 899 ms
44,364 KB
testcase_21 AC 530 ms
43,976 KB
testcase_22 AC 600 ms
43,840 KB
testcase_23 WA -
testcase_24 AC 543 ms
44,352 KB
testcase_25 AC 536 ms
43,852 KB
testcase_26 AC 547 ms
44,100 KB
testcase_27 AC 530 ms
43,976 KB
testcase_28 WA -
testcase_29 AC 536 ms
44,364 KB
testcase_30 AC 539 ms
44,612 KB
testcase_31 AC 535 ms
44,356 KB
testcase_32 AC 539 ms
44,352 KB
testcase_33 AC 965 ms
44,236 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 664 ms
43,844 KB
testcase_37 AC 891 ms
44,100 KB
testcase_38 AC 657 ms
44,236 KB
testcase_39 WA -
testcase_40 AC 868 ms
44,360 KB
testcase_41 AC 891 ms
44,360 KB
testcase_42 AC 905 ms
44,100 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 625 ms
43,848 KB
testcase_48 AC 801 ms
44,484 KB
testcase_49 AC 637 ms
43,972 KB
testcase_50 AC 809 ms
44,160 KB
testcase_51 WA -
testcase_52 WA -
testcase_53 AC 1,031 ms
44,228 KB
testcase_54 AC 720 ms
44,104 KB
testcase_55 AC 543 ms
44,224 KB
testcase_56 WA -
testcase_57 WA -
testcase_58 AC 510 ms
43,976 KB
testcase_59 AC 529 ms
44,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

N = int(readline())
S = np.frombuffer(readline().rstrip(),'S1') == b'E'
A = np.array(readline().split(),np.int64)
Q = int(readline())
K = np.array(read().split(),np.int64)

INF = 10 ** 18
min_power = [INF] * (N+1)

for L in range(N):
    power = A[L:].cumsum()
    n_enemy = np.cumsum(S[L:])
    for p,n in zip(power.tolist(), n_enemy.tolist()):
        if min_power[n] > p:
            min_power[n] = p

for n in range(N-1,-1,-1):
    if min_power[n] > min_power[n+1]:
        min_power[n] = min_power[n+1]

answer = np.searchsorted(min_power, K, 'right') - 1
print('\n'.join(answer.astype(str)))
0