結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 194 ms
107,940 KB
testcase_01 AC 194 ms
107,940 KB
testcase_02 AC 193 ms
107,940 KB
testcase_03 AC 194 ms
202,112 KB
testcase_04 AC 197 ms
107,936 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 186 ms
104,224 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 6 ms
107,680 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 8 ms
14,372 KB
testcase_23 AC 7 ms
13,640 KB
testcase_24 AC 7 ms
100,388 KB
testcase_25 AC 4 ms
13,764 KB
testcase_26 AC 5 ms
13,636 KB
testcase_27 AC 9 ms
14,756 KB
testcase_28 WA -
testcase_29 AC 7 ms
13,632 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 2 ms
6,820 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 WA -
testcase_44 AC 2 ms
6,816 KB
testcase_45 WA -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
権限があれば一括ダウンロードができます

ソースコード

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