結果
| 問題 | No.7 プライムナンバーゲーム |
| コンテスト | |
| ユーザー |
tokkaka
|
| 提出日時 | 2016-07-17 13:23:41 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 456 bytes |
| 記録 | |
| コンパイル時間 | 624 ms |
| コンパイル使用メモリ | 102,124 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-04 21:31:23 |
| 合計ジャッジ時間 | 1,494 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 11 WA * 6 |
ソースコード
#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;
}
tokkaka