結果

問題 No.8 N言っちゃダメゲーム
ユーザー niyarinniyarin
提出日時 2017-04-06 23:49:06
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 812 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 27,144 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-24 21:18:02
合計ジャッジ時間 997 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 0 ms
4,380 KB
testcase_02 AC 0 ms
4,376 KB
testcase_03 AC 0 ms
4,376 KB
testcase_04 AC 0 ms
4,376 KB
testcase_05 AC 0 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 0 ms
4,376 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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");
    }
    */
    if ((N-1)%(K+1) == 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;
}
0