結果

問題 No.1314 N言っちゃダメゲーム (5)
ユーザー H3PO4H3PO4
提出日時 2020-12-16 22:45:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 153 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-20 05:24:52
合計ジャッジ時間 2,020 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

M, K = map(int, input().split())
lose = (M - 1) // (K + 1)
win = (M - 1) - lose

if win % 2:
    print('Win')
else:
    print('Lose' if lose else 'Draw')
0