結果
問題 | No.973 余興 |
ユーザー | 沙耶花 |
提出日時 | 2019-12-06 08:39:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 805 bytes |
コンパイル時間 | 1,771 ms |
コンパイル使用メモリ | 175,084 KB |
実行使用メモリ | 11,548 KB |
最終ジャッジ日時 | 2024-05-10 01:54:51 |
合計ジャッジ時間 | 11,166 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 304 ms
6,912 KB |
testcase_01 | WA | - |
testcase_02 | AC | 300 ms
6,784 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 304 ms
6,784 KB |
testcase_06 | AC | 314 ms
6,784 KB |
testcase_07 | AC | 317 ms
6,912 KB |
testcase_08 | AC | 308 ms
6,784 KB |
testcase_09 | AC | 318 ms
6,912 KB |
testcase_10 | WA | - |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
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 | -- | - |
ソースコード
#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; }