結果

問題 No.973 余興
ユーザー shibh308shibh308
提出日時 2019-12-06 08:37:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,189 bytes
コンパイル時間 2,207 ms
コンパイル使用メモリ 206,824 KB
実行使用メモリ 108,192 KB
最終ジャッジ日時 2024-05-10 01:54:31
合計ジャッジ時間 27,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 191 ms
108,192 KB
testcase_01 AC 196 ms
101,120 KB
testcase_02 AC 189 ms
101,120 KB
testcase_03 AC 190 ms
101,120 KB
testcase_04 AC 193 ms
101,120 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 185 ms
97,280 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 6 ms
5,888 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 9 ms
7,424 KB
testcase_23 AC 8 ms
6,656 KB
testcase_24 AC 8 ms
6,656 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 6 ms
5,888 KB
testcase_27 AC 10 ms
7,808 KB
testcase_28 WA -
testcase_29 AC 7 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 i = 0; i < n; ++i)
        for(int len = 0; len < n; ++len){
            int j = i + len;
            if(j >= n)
                break;
            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