結果

問題 No.973 余興
ユーザー 沙耶花沙耶花
提出日時 2019-12-04 19:53:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 913 bytes
コンパイル時間 1,797 ms
コンパイル使用メモリ 174,656 KB
実行使用メモリ 13,468 KB
最終ジャッジ日時 2024-05-10 01:26:07
合計ジャッジ時間 24,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 239 ms
6,816 KB
testcase_01 AC 240 ms
6,784 KB
testcase_02 AC 234 ms
6,912 KB
testcase_03 AC 241 ms
6,912 KB
testcase_04 AC 244 ms
6,784 KB
testcase_05 AC 240 ms
6,784 KB
testcase_06 AC 243 ms
6,912 KB
testcase_07 AC 243 ms
6,912 KB
testcase_08 AC 241 ms
6,784 KB
testcase_09 AC 247 ms
6,784 KB
testcase_10 AC 231 ms
6,656 KB
testcase_11 AC 3,337 ms
5,376 KB
testcase_12 AC 3,348 ms
5,376 KB
testcase_13 AC 3,319 ms
5,376 KB
testcase_14 AC 3,366 ms
5,376 KB
testcase_15 AC 11 ms
5,376 KB
testcase_16 AC 11 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 9 ms
5,376 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 7 ms
5,376 KB
testcase_21 AC 12 ms
5,376 KB
testcase_22 AC 12 ms
5,376 KB
testcase_23 AC 11 ms
5,376 KB
testcase_24 AC 10 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 8 ms
5,376 KB
testcase_27 AC 13 ms
5,376 KB
testcase_28 AC 9 ms
5,376 KB
testcase_29 AC 10 ms
5,376 KB
testcase_30 TLE -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
権限があれば一括ダウンロードができます

ソースコード

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