結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | hotpepsi |
提出日時 | 2015-02-23 00:29:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 651 bytes |
コンパイル時間 | 520 ms |
コンパイル使用メモリ | 65,532 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-06-23 21:55:19 |
合計ジャッジ時間 | 6,999 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <sstream> #include <vector> #include <cstring> using namespace std; int memo[120001]; int N, K; static int solve(int x) { if (x >= (N - 1)) { return 0; } int &r = memo[x]; if (r < 0) { r = 0; for (int a = 1; a <= K; ++a) { if (!solve(x + a)) { r = 1; break; } } } return r; } int main(int argc, char *argv[]) { string s; getline(cin, s); int T = atoi(s.c_str()); for (int i = 0; i < T; ++i) { getline(cin, s); stringstream ss(s); ss >> N >> K; memset(memo, -1, sizeof(memo)); string ans = solve(0) ? "Win" : "Lose"; cout << ans << endl; } return 0; }