結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー |
|
提出日時 | 2017-12-05 18:05:19 |
言語 | PyPy2 (7.3.15) |
結果 |
AC
|
実行時間 | 72 ms / 5,000 ms |
コード長 | 135 bytes |
コンパイル時間 | 2,502 ms |
コンパイル使用メモリ | 76,700 KB |
実行使用メモリ | 75,816 KB |
最終ジャッジ日時 | 2024-11-28 16:52:18 |
合計ジャッジ時間 | 1,943 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
for _ in xrange(int(raw_input())): n, k = map(int, raw_input().split()) if (n - 1) % (k + 1) == 0: print 'Lose' else: print 'Win'