結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | Luna |
提出日時 | 2018-09-06 09:43:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 751 bytes |
コンパイル時間 | 476 ms |
コンパイル使用メモリ | 60,608 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-01 06:14:06 |
合計ジャッジ時間 | 3,430 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | RE | - |
testcase_04 | AC | 228 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
#include <iostream> #include <vector> bool solve(const int n, const int k) { bool dp[n+100]; for (int i = 2; i < k+2; i++) { dp[i] = true; } for (int i = k+2; i < n+1; i++) { dp[i] = false; for (int j = 1; j < k+1; j++) { dp[i] |= !dp[i-j]; if (dp[i]) break; } } return dp[n]; } int main(int argc, char const* argv[]) { int p; std::cin >> p; std::vector<int> n(p), k(p); for (int i = 0; i < p; i++) { std::cin >> n[i] >> k[i]; } for (int i = 0; i < p; i++) { if (solve(n[i], k[i])) { std::cout << "Win" << std::endl; } else { std::cout << "Lose" << std::endl; } } return 0; }