結果

問題 No.8 N言っちゃダメゲーム
ユーザー ytftytft
提出日時 2022-11-02 14:52:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 5,000 ms
コード長 152 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 87,056 KB
実行使用メモリ 71,600 KB
最終ジャッジ日時 2023-09-24 04:02:41
合計ジャッジ時間 1,693 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
71,176 KB
testcase_01 AC 60 ms
71,212 KB
testcase_02 AC 62 ms
71,248 KB
testcase_03 AC 63 ms
71,564 KB
testcase_04 AC 62 ms
71,320 KB
testcase_05 AC 67 ms
71,212 KB
testcase_06 AC 64 ms
71,396 KB
testcase_07 AC 68 ms
71,404 KB
testcase_08 AC 63 ms
71,448 KB
testcase_09 AC 62 ms
71,448 KB
testcase_10 AC 61 ms
71,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda:sys.stdin.readline().rstrip()
N=int(input())
for i in range(N):
	A,B=map(int,input().split())
	print(["Win","Lose"][A%(B+1)==1])
0