結果

問題 No.973 余興
ユーザー shibh308shibh308
提出日時 2019-12-06 08:34:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,120 bytes
コンパイル時間 2,513 ms
コンパイル使用メモリ 205,184 KB
実行使用メモリ 202,240 KB
最終ジャッジ日時 2024-05-10 01:51:24
合計ジャッジ時間 26,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 391 ms
202,240 KB
testcase_01 AC 394 ms
101,120 KB
testcase_02 AC 389 ms
101,120 KB
testcase_03 AC 394 ms
100,992 KB
testcase_04 AC 394 ms
101,120 KB
testcase_05 AC 426 ms
101,120 KB
testcase_06 AC 385 ms
101,120 KB
testcase_07 AC 385 ms
101,120 KB
testcase_08 AC 379 ms
100,864 KB
testcase_09 AC 389 ms
101,120 KB
testcase_10 AC 364 ms
97,280 KB
testcase_11 AC 3,281 ms
38,528 KB
testcase_12 AC 3,302 ms
38,784 KB
testcase_13 AC 3,277 ms
38,272 KB
testcase_14 AC 3,399 ms
38,400 KB
testcase_15 AC 14 ms
7,424 KB
testcase_16 AC 14 ms
7,552 KB
testcase_17 AC 8 ms
5,888 KB
testcase_18 AC 11 ms
6,656 KB
testcase_19 AC 11 ms
6,656 KB
testcase_20 AC 9 ms
5,888 KB
testcase_21 AC 14 ms
7,424 KB
testcase_22 AC 13 ms
7,296 KB
testcase_23 AC 11 ms
6,656 KB
testcase_24 AC 11 ms
6,656 KB
testcase_25 AC 6 ms
5,376 KB
testcase_26 AC 8 ms
5,888 KB
testcase_27 AC 15 ms
7,808 KB
testcase_28 AC 12 ms
6,656 KB
testcase_29 AC 11 ms
6,656 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

using i64 = long long;


signed main(){
    int n, x;
    cin >> n >> x;
    vector<int> v(n);
    for(auto& w : v)
        cin >> w;

    vector<vector<int>> a(n, vector<int>(n, 0));

    for(int k = 1; k < n; ++k)
        for(int i = 0, j = k; j < n; ++i, ++j){
            bool f = false;
            int right_sum = v[j];
            for(int right = j - 1; right >= i; --right){
                if(!a[i][right]){
                    f = true;
                    break;
                }
                right_sum += v[right];
                if(right_sum > x)
                    break;
            }
            if(!f){
                int left_sum = v[i];
                for(int left = i + 1; left <= j; ++left){
                    if(!a[left][j]){
                        f = true;
                        break;
                    }
                    left_sum += v[left];
                    if(left_sum > x)
                        break;
                }
            }

            a[i][j] = f;
        }

    cout << (a[0][n - 1] ? "A" : "B") << endl;
}
0