結果

問題 No.8 N言っちゃダメゲーム
ユーザー ああいいああいい
提出日時 2022-01-28 16:20:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 151 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 86,840 KB
実行使用メモリ 71,516 KB
最終ジャッジ日時 2023-08-28 13:35:10
合計ジャッジ時間 2,825 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 75 ms
71,400 KB
testcase_06 AC 74 ms
71,392 KB
testcase_07 AC 74 ms
71,124 KB
testcase_08 AC 74 ms
70,940 KB
testcase_09 AC 77 ms
71,128 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