結果

問題 No.973 余興
ユーザー 沙耶花沙耶花
提出日時 2019-12-04 19:53:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 913 bytes
コンパイル時間 1,969 ms
コンパイル使用メモリ 175,140 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-12-17 20:39:24
合計ジャッジ時間 119,533 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
13,344 KB
testcase_01 AC 237 ms
13,644 KB
testcase_02 AC 231 ms
13,344 KB
testcase_03 AC 240 ms
13,636 KB
testcase_04 AC 238 ms
13,632 KB
testcase_05 AC 237 ms
13,476 KB
testcase_06 AC 242 ms
13,348 KB
testcase_07 AC 243 ms
13,644 KB
testcase_08 AC 237 ms
13,472 KB
testcase_09 AC 245 ms
13,348 KB
testcase_10 AC 227 ms
13,344 KB
testcase_11 AC 3,328 ms
13,348 KB
testcase_12 AC 3,315 ms
13,344 KB
testcase_13 AC 3,339 ms
13,476 KB
testcase_14 AC 3,303 ms
13,344 KB
testcase_15 AC 11 ms
13,640 KB
testcase_16 AC 12 ms
13,348 KB
testcase_17 AC 8 ms
13,348 KB
testcase_18 AC 10 ms
13,480 KB
testcase_19 AC 10 ms
13,344 KB
testcase_20 AC 7 ms
13,636 KB
testcase_21 AC 11 ms
13,344 KB
testcase_22 AC 12 ms
13,476 KB
testcase_23 AC 10 ms
13,088 KB
testcase_24 AC 10 ms
13,348 KB
testcase_25 AC 5 ms
13,096 KB
testcase_26 AC 7 ms
13,348 KB
testcase_27 AC 13 ms
13,348 KB
testcase_28 AC 9 ms
13,348 KB
testcase_29 AC 9 ms
13,472 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,820 KB
testcase_43 AC 2 ms
6,820 KB
testcase_44 AC 2 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;
#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 now = true;
			while(true){
				sum += a[l];
				if(sum>X)break;
				l++;
				if(l>r)break;
				now &= dp[l][r];
				if(!now)break;
			}
			
			l = j;
			r = j+i;
			sum = 0;
			while(true){
				sum += a[r];
				if(sum>X)break;
				r--;
				if(l>r)break;
				now &= dp[l][r];
				if(!now)break;
			}
			dp[j][j+i]=!now;
		}		
	}

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


	return 0;
}
0