結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 359 ms
202,240 KB
testcase_01 AC 360 ms
107,936 KB
testcase_02 AC 351 ms
108,064 KB
testcase_03 AC 369 ms
108,064 KB
testcase_04 AC 362 ms
202,240 KB
testcase_05 AC 352 ms
108,068 KB
testcase_06 AC 371 ms
202,368 KB
testcase_07 AC 354 ms
108,068 KB
testcase_08 AC 351 ms
201,344 KB
testcase_09 AC 364 ms
108,064 KB
testcase_10 AC 334 ms
104,228 KB
testcase_11 AC 2,914 ms
136,960 KB
testcase_12 AC 2,923 ms
45,604 KB
testcase_13 AC 2,849 ms
136,704 KB
testcase_14 AC 2,881 ms
45,220 KB
testcase_15 AC 12 ms
108,160 KB
testcase_16 AC 12 ms
108,416 KB
testcase_17 AC 8 ms
13,764 KB
testcase_18 AC 10 ms
107,936 KB
testcase_19 AC 10 ms
13,772 KB
testcase_20 AC 8 ms
107,940 KB
testcase_21 AC 12 ms
14,496 KB
testcase_22 AC 12 ms
14,372 KB
testcase_23 AC 10 ms
13,768 KB
testcase_24 AC 10 ms
13,764 KB
testcase_25 AC 5 ms
13,764 KB
testcase_26 AC 8 ms
13,772 KB
testcase_27 AC 15 ms
109,056 KB
testcase_28 AC 10 ms
13,772 KB
testcase_29 AC 10 ms
13,764 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 1 ms
6,820 KB
testcase_42 AC 2 ms
6,820 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 1 ms
6,820 KB
testcase_45 AC 2 ms
6,816 KB
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 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