結果

問題 No.8 N言っちゃダメゲーム
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-20 14:25:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 104 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-10-20 14:25:55
合計ジャッジ時間 1,798 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,980 KB
testcase_01 AC 34 ms
52,900 KB
testcase_02 AC 35 ms
53,364 KB
testcase_03 AC 37 ms
54,044 KB
testcase_04 AC 38 ms
53,692 KB
testcase_05 AC 37 ms
52,488 KB
testcase_06 AC 39 ms
53,428 KB
testcase_07 AC 39 ms
54,180 KB
testcase_08 AC 39 ms
52,472 KB
testcase_09 AC 38 ms
53,156 KB
testcase_10 AC 37 ms
53,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P=int(input())
for _ in range(P):
  n,k=map(int,input().split())
  print(["Win","Lose"][(n-1)%(k+1)==0])
0