結果

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

ソースコード

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 == 0) {
    x += lose - (lose + 1) / 2;
    y += lose - lose / 2;
  } else {
    x += lose - lose / 2;
    y += lose - (lose + 1) / 2;
  }

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

  return 0;
}
0