結果

問題 No.973 余興
ユーザー 沙耶花沙耶花
提出日時 2019-12-06 08:39:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 173,408 KB
実行使用メモリ 13,768 KB
最終ジャッジ日時 2024-12-17 21:29:49
合計ジャッジ時間 127,683 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 311 ms
11,300 KB
testcase_01 WA -
testcase_02 AC 307 ms
11,520 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 306 ms
13,764 KB
testcase_06 AC 311 ms
11,520 KB
testcase_07 AC 315 ms
13,348 KB
testcase_08 AC 314 ms
13,472 KB
testcase_09 AC 324 ms
13,344 KB
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 15 ms
13,344 KB
testcase_16 AC 14 ms
13,348 KB
testcase_17 WA -
testcase_18 AC 11 ms
13,348 KB
testcase_19 AC 12 ms
13,476 KB
testcase_20 AC 9 ms
13,352 KB
testcase_21 AC 15 ms
13,764 KB
testcase_22 WA -
testcase_23 AC 12 ms
13,088 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 12 ms
13,348 KB
testcase_29 WA -
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 1 ms
6,820 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 WA -
testcase_44 WA -
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][r]){
					f=true;
					break;
				}
			}

			sum = 0;
			for(int k=r;k>l;k--){
				sum += a[k];
				if(sum>X)break;
				if(!dp[l][k]){
					f=true;
					break;
				}
			}
			dp[j][j+i]=f;
		}		
	}

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


	return 0;
}
0