結果
問題 | No.935 う し た ぷ に き あ く ん 笑 ビ - ム |
ユーザー | 東前頭十一枚目 |
提出日時 | 2020-03-18 15:54:49 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 660 bytes |
コンパイル時間 | 1,608 ms |
コンパイル使用メモリ | 172,104 KB |
実行使用メモリ | 50,340 KB |
最終ジャッジ日時 | 2024-12-14 02:14:30 |
合計ジャッジ時間 | 13,571 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
6,820 KB |
testcase_01 | AC | 55 ms
7,552 KB |
testcase_02 | AC | 10 ms
8,832 KB |
testcase_03 | AC | 130 ms
14,592 KB |
testcase_04 | WA | - |
testcase_05 | AC | 23 ms
13,924 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 576 ms
48,784 KB |
testcase_09 | WA | - |
testcase_10 | AC | 381 ms
29,996 KB |
testcase_11 | AC | 506 ms
42,780 KB |
testcase_12 | AC | 2 ms
6,816 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | AC | 336 ms
50,340 KB |
testcase_18 | AC | 109 ms
28,936 KB |
testcase_19 | AC | 244 ms
14,736 KB |
testcase_20 | WA | - |
testcase_21 | AC | 10 ms
6,820 KB |
testcase_22 | AC | 13 ms
12,544 KB |
testcase_23 | WA | - |
testcase_24 | AC | 3 ms
6,820 KB |
testcase_25 | AC | 3 ms
6,820 KB |
testcase_26 | AC | 2 ms
6,820 KB |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | WA | - |
testcase_30 | AC | 2 ms
6,820 KB |
testcase_31 | WA | - |
testcase_32 | AC | 3 ms
6,816 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 357 ms
33,688 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 424 ms
33,076 KB |
testcase_40 | AC | 467 ms
35,052 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 480 ms
35,948 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 20 ms
6,816 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 141 ms
13,140 KB |
testcase_50 | AC | 200 ms
28,880 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | AC | 90 ms
22,240 KB |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | AC | 2 ms
6,820 KB |
testcase_59 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n; cin >> n; vector<vector<int64_t>> hp(n, vector<int64_t>(n, 0)); int num[n][n] = {}; string s; cin >> s; int64_t a[n]; for(int i = 0; i < n; ++i) cin >> a[i]; for(int l = 0; l < n; ++l) { int64_t sum = 0; int cnt = 0; for(int r = l; r < n; ++r) { sum += a[r]; cnt += (s[r] == 'E'); hp[l][r] = sum; num[l][r] = cnt; } } int q; cin >> q; while(q--) { int64_t k; cin >> k; int ans = 0; for(int l = 0; l < n; ++l) { int r = upper_bound(hp[l].begin(), hp[l].end(), k) - hp[l].begin() - 1; ans = max(ans, num[l][r]); } cout << ans << '\n'; } return 0; }