結果

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

ソースコード

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;

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

  int x = 0, y = 0;

  x += (win + 1) / 2;
  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