結果

問題 No.973 余興
ユーザー 沙耶花沙耶花
提出日時 2019-12-06 08:41:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 839 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 173,496 KB
実行使用メモリ 13,776 KB
最終ジャッジ日時 2024-12-17 21:33:16
合計ジャッジ時間 122,889 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
13,476 KB
testcase_01 AC 265 ms
13,768 KB
testcase_02 AC 259 ms
13,348 KB
testcase_03 AC 262 ms
13,348 KB
testcase_04 AC 268 ms
13,440 KB
testcase_05 AC 261 ms
13,440 KB
testcase_06 AC 266 ms
13,476 KB
testcase_07 AC 269 ms
13,476 KB
testcase_08 AC 265 ms
13,348 KB
testcase_09 AC 269 ms
13,348 KB
testcase_10 AC 252 ms
13,344 KB
testcase_11 AC 3,795 ms
13,348 KB
testcase_12 AC 3,792 ms
13,768 KB
testcase_13 AC 3,762 ms
13,344 KB
testcase_14 AC 3,758 ms
13,348 KB
testcase_15 AC 12 ms
13,348 KB
testcase_16 AC 12 ms
13,344 KB
testcase_17 AC 8 ms
13,352 KB
testcase_18 AC 10 ms
13,088 KB
testcase_19 AC 10 ms
13,768 KB
testcase_20 AC 8 ms
13,344 KB
testcase_21 AC 12 ms
13,764 KB
testcase_22 AC 12 ms
13,092 KB
testcase_23 AC 11 ms
13,348 KB
testcase_24 AC 11 ms
13,764 KB
testcase_25 AC 6 ms
13,344 KB
testcase_26 AC 8 ms
13,344 KB
testcase_27 AC 14 ms
13,348 KB
testcase_28 AC 10 ms
6,820 KB
testcase_29 AC 11 ms
6,820 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 1 ms
6,816 KB
testcase_43 AC 2 ms
6,816 KB
testcase_44 AC 2 ms
6,816 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;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 10000000000000000



int main(){
	
	int N,X;
	cin>>N>>X;
	
	vector<int> a(N);
	for(int i=0;i<N;i++){
		cin>>a[i];
	}
	
	vector<vector<bool>> dp(N,vector<bool> (N,true));
	
	for(int i=0;i<N;i++){
		for(int j=0;j<N;j++){
			int l = j;
			int r = j+i;
			if(r>=N)break;
			int sum = 0;
			bool f = false;
			for(int k=l;k<r;k++){
				sum += a[k];
				if(sum>X)break;
				if(!dp[k+1][r]){
					f=true;
					break;
				}
			}
			if(f==false){
				sum = 0;
				for(int k=r;k>l;k--){
					sum += a[k];
					if(sum>X)break;
					if(!dp[l][k-1]){
						f=true;
						break;
					}
				}
			}
			dp[j][j+i]=f;
		}		
	}

	
	if(!dp[0][N-1]){
		cout<<"B"<<endl;
	}
	else{
		cout<<"A"<<endl;
	}
	
	


	return 0;
}
0