結果

問題 No.8 N言っちゃダメゲーム
ユーザー convexineqconvexineq
提出日時 2020-11-24 05:19:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 114 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 86,936 KB
実行使用メモリ 71,356 KB
最終ジャッジ日時 2023-10-01 00:47:00
合計ジャッジ時間 2,029 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
71,288 KB
testcase_01 AC 75 ms
71,148 KB
testcase_02 AC 76 ms
71,172 KB
testcase_03 AC 76 ms
71,152 KB
testcase_04 AC 78 ms
71,028 KB
testcase_05 AC 77 ms
70,900 KB
testcase_06 AC 71 ms
71,236 KB
testcase_07 AC 77 ms
71,356 KB
testcase_08 AC 78 ms
71,340 KB
testcase_09 AC 73 ms
71,240 KB
testcase_10 AC 73 ms
71,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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