結果

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  int m, k;
  cin >> m >> k;

  --m;
  int lose = m / (k + 1) - 1 / (k + 1);
  int win = m - lose;

  int x = (win + 1) / 2;
  int y = win / 2;

  if (win % 2) {
    x += lose;
  } else {
    y += lose;
  }

  if (x > y)
    cout << "Win" << endl;
  else if (x == y)
    cout << "Draw" << endl;
  else
    cout << "Lose" << endl;

  return 0;
}
0