結果

問題 No.8 N言っちゃダメゲーム
ユーザー nbisco
提出日時 2016-04-11 23:40:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 29 ms / 5,000 ms
コード長 205 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-10-04 06:41:46
合計ジャッジ時間 970 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#fileencoding: utf-8

for _ in range(int(input())):
    N, K = [int(i) for i in input().strip().split(" ")]
    if N%(K+1) != 1:
        print("Win")
    else:
        print("Lose")
0