結果

問題 No.8 N言っちゃダメゲーム
ユーザー ああいいああいい
提出日時 2022-01-28 16:20:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-06-09 08:52:16
合計ジャッジ時間 1,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 34 ms
52,096 KB
testcase_08 AC 33 ms
52,608 KB
testcase_09 AC 35 ms
52,468 KB
testcase_10 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

P = int(input())
for _ in range(P):
    N,K = map(int,input().split())
    
    if N % (K+1) == 0:
        print('Lose')
    else:
        print('Win')
0