結果

問題 No.8 N言っちゃダメゲーム
ユーザー youjo_yamiotiyoujo_yamioti
提出日時 2018-12-02 09:33:50
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 1,427 ms
コンパイル使用メモリ 159,560 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 10:44:00
合計ジャッジ時間 3,251 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:5:24: warning: ‘N’ is used uninitialized [-Wuninitialized]
    5 |     vector<int> judge(N+1,0);
      |                       ~^~
main.cpp:4:11: note: ‘N’ declared here
    4 |     int P,N,K;
      |           ^

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    int P,N,K;
    vector<int> judge(N+1,0);
    cin >> P;
    int i;
    for(i=0;i<P;i++){
        cin >> N >> K;
        judge[N-1] = 0;
        for(int j=N-2;j>=0;j--){
            for(int k=1;k<=K;k++){
                if(judge[j+k] == 0) judge[j] = 1;
            }
        }
        if(judge[0] == 0) cout << "Win" << endl;
        else cout << "Lose" << endl;
    }
    return 0;
}
0