結果

問題 No.1314 N言っちゃダメゲーム (5)
ユーザー Akijin_007Akijin_007
提出日時 2022-10-17 18:01:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 54,052 KB
最終ジャッジ日時 2024-06-28 08:11:17
合計ジャッジ時間 2,623 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,832 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,112 KB
testcase_03 AC 38 ms
53,016 KB
testcase_04 WA -
testcase_05 AC 38 ms
52,080 KB
testcase_06 AC 38 ms
52,612 KB
testcase_07 AC 39 ms
53,620 KB
testcase_08 AC 38 ms
52,308 KB
testcase_09 AC 40 ms
52,680 KB
testcase_10 AC 39 ms
52,324 KB
testcase_11 AC 38 ms
52,692 KB
testcase_12 WA -
testcase_13 AC 40 ms
53,024 KB
testcase_14 AC 39 ms
52,744 KB
testcase_15 AC 39 ms
52,292 KB
testcase_16 AC 38 ms
53,364 KB
testcase_17 AC 39 ms
53,912 KB
testcase_18 AC 39 ms
52,624 KB
testcase_19 AC 39 ms
51,428 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 WA -
testcase_22 AC 38 ms
53,104 KB
testcase_23 AC 38 ms
52,156 KB
testcase_24 AC 39 ms
51,564 KB
testcase_25 AC 38 ms
52,416 KB
testcase_26 AC 39 ms
52,360 KB
testcase_27 AC 39 ms
52,356 KB
testcase_28 AC 39 ms
51,500 KB
testcase_29 AC 38 ms
53,296 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

M, K = map(int, input().split())

a, b = divmod(M, K+1)

if b == 0:
    a -= 1

M -= a + 1
if M % 2 == 1:
    print("Win")
else:
    if a == 0:
        print("Drow")
    else:
        print("Lose")
0