結果
| 問題 |
No.1314 N言っちゃダメゲーム (5)
|
| コンテスト | |
| ユーザー |
👑 Kazun
|
| 提出日時 | 2020-12-11 00:21:17 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 203 bytes |
| コンパイル時間 | 143 ms |
| コンパイル使用メモリ | 82,368 KB |
| 実行使用メモリ | 66,864 KB |
| 最終ジャッジ日時 | 2024-09-19 20:57:23 |
| 合計ジャッジ時間 | 2,462 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 2 |
| other | AC * 13 WA * 3 RE * 12 |
ソースコード
M,K=map(int,input().split())
#後手必勝の回数
B=M//(K+1)
#先手必勝の回数
A=M-1-B
if A%2:
print("Win")
else:
y=1/0
if B%2:
print("Lose")
else:
print("Draw")
Kazun