結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | 0w1 |
提出日時 | 2016-11-20 13:39:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 527 bytes |
コンパイル時間 | 1,401 ms |
コンパイル使用メモリ | 168,360 KB |
実行使用メモリ | 14,720 KB |
最終ジャッジ日時 | 2024-05-05 10:41:27 |
合計ジャッジ時間 | 7,814 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int dfs( vector< int > &dp, int n, int k ){ if( ~dp[ n ] ) return dp[ n ]; for( int i = 1; i <= k; ++i ) if( 0 < n - i ) if( not dfs( dp, n - i, k ) ) return dp[ n ] = 1; return dp[ n ] = 0; } signed main(){ const string message[] = { "Lose", "Win" }; int P; cin >> P; for( int i = 0; i < P; ++i ){ int N, K; cin >> N >> K; vector< int > dp( N + 1, -1 ); dp[ 1 ] = 0; cout << message[ dfs( dp, N, K ) ] << endl; } return 0; }