結果

問題 No.973 余興
ユーザー shibh308shibh308
提出日時 2019-12-06 08:36:38
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,191 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 204,668 KB
実行使用メモリ 101,248 KB
最終ジャッジ日時 2024-05-10 01:53:07
合計ジャッジ時間 5,703 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 73 ms
101,120 KB
testcase_06 AC 76 ms
101,120 KB
testcase_07 AC 75 ms
100,992 KB
testcase_08 AC 74 ms
100,864 KB
testcase_09 AC 73 ms
101,120 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 25 ms
38,272 KB
testcase_14 WA -
testcase_15 AC 5 ms
7,424 KB
testcase_16 AC 5 ms
7,552 KB
testcase_17 WA -
testcase_18 AC 4 ms
6,656 KB
testcase_19 AC 4 ms
6,528 KB
testcase_20 AC 4 ms
5,888 KB
testcase_21 AC 5 ms
7,424 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 4 ms
6,656 KB
testcase_29 WA -
testcase_30 AC 74 ms
101,248 KB
testcase_31 AC 74 ms
101,248 KB
testcase_32 AC 75 ms
101,120 KB
testcase_33 AC 74 ms
101,120 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 69 ms
98,432 KB
testcase_37 AC 71 ms
98,432 KB
testcase_38 WA -
testcase_39 AC 72 ms
100,864 KB
testcase_40 WA -
testcase_41 AC 2 ms
5,376 KB
testcase_42 AC 2 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 WA -
testcase_45 AC 1 ms
5,376 KB
testcase_46 WA -
testcase_47 AC 72 ms
101,120 KB
testcase_48 WA -
testcase_49 AC 65 ms
93,440 KB
testcase_50 WA -
testcase_51 AC 71 ms
101,120 KB
testcase_52 AC 73 ms
101,120 KB
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
権限があれば一括ダウンロードができます

ソースコード

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 >= len)
                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