結果

問題 No.7 プライムナンバーゲーム
ユーザー tokkaka
提出日時 2016-07-17 13:23:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 93,744 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-15 15:20:45
合計ジャッジ時間 1,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 6
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <string>
#include <vector>
#include <functional>
#include <tuple>
#include <climits>
#include <algorithm>
#include <queue>
#include <unordered_map>
#include <unordered_set>
#include <set>
#include <iomanip>

using namespace std;

int main()
{
    int N;
    cin >> N;
    string c;
    if(N <= 3) c="Lose";
    else if(N==4) c="Win";
    else if(N%4==0) c="Lose";
    else c="Win"; 
    cout << c << endl;
}
0