結果
問題 | No.3041 なんとかのはなうらない |
ユーザー | first_vil |
提出日時 | 2020-06-04 14:50:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 374 bytes |
コンパイル時間 | 846 ms |
コンパイル使用メモリ | 76,052 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-06 17:54:51 |
合計ジャッジ時間 | 1,388 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
#include<iostream> #include<vector> using namespace std; int n; vector<int> memo; int dfs(int k){ if(k==0)return ~n&1; if(memo[k]!=-1)return memo[k]; int res=0; if(1<=k)res|=!dfs(k-1); if(2<=k)res|=!dfs(k-2); if(3<=k)res|=!dfs(k-3); return memo[k]=res; } int main(){ cin>>n; memo.resize(n+1,-1); cout<<(dfs(n)==-1?"Yes":"No")<<"\n"; }