結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | niyarin |
提出日時 | 2017-04-06 23:46:19 |
言語 | C (gcc 12.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 30,080 KB |
実行使用メモリ | 8,992 KB |
最終ジャッジ日時 | 2024-07-17 21:42:50 |
合計ジャッジ時間 | 6,597 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include<stdio.h> #define FOR(i,a,b) for(int i=(a);i<(b);i++) #define REP(i,n) for(int i=0;i<(n);i++) int N,K; int P; int dp[120001]; void solve(){ REP(i,N){ dp[i] = 0; } dp[N-1] = 1; for(int i=N-2;i>-1;i--){ int flag = 1; for (int j=1;j<=K;j++){ if ((i+j)>=N){ break; }else if (dp[i+j]){ flag = 0; break; } } dp[i] = flag; } if (dp[0]){ printf("Lose\n"); }else{ printf("Win\n"); } } int main(void){ scanf("%d",&P); REP(i,P){ scanf("%d %d",&N,&K); solve(); } return 0; }