結果

問題 No.1314 N言っちゃダメゲーム (5)
ユーザー hitonanodehitonanode
提出日時 2020-12-17 01:33:49
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 835 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 191,312 KB
最終ジャッジ日時 2025-01-17 02:17:22
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
using pint = pair<int, int>;
using plint = pair<lint, lint>;
struct fast_ios { fast_ios(){ cin.tie(nullptr), ios::sync_with_stdio(false), cout << fixed << setprecision(20); }; } fast_ios_;
#define ALL(x) (x).begin(), (x).end()
#define FOR(i, begin, end) for(int i=(begin),i##_end_=(end);i<i##_end_;i++)
#define IFOR(i, begin, end) for(int i=(end)-1,i##_begin_=(begin);i>=i##_begin_;i--)
#define REP(i, n) FOR(i,0,n)
#define IREP(i, n) IFOR(i,0,n)


int main()
{
    lint M, K;
    cin >> M >> K;
    lint m = (M - 1) / (K + 1);  // 先手必敗
    lint n = M - m - 1;
    lint sente = (n + 1) / 2;
    lint gote = n / 2;
    (n % 2 ? sente : gote) += m;
    if (sente > gote) puts("Win");
    if (sente < gote) puts("Lose");
    if (sente == gote) puts("Draw");
}
0