結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー |
|
提出日時 | 2021-02-25 21:38:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 42 ms / 5,000 ms |
コード長 | 150 bytes |
コンパイル時間 | 1,386 ms |
コンパイル使用メモリ | 82,088 KB |
実行使用メモリ | 52,480 KB |
最終ジャッジ日時 | 2024-10-01 13:00:22 |
合計ジャッジ時間 | 3,039 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 |
ソースコード
for i in range(int(input())): N, K = map(int, input().split()) if (N - 1) % (K + 1) == 0: print("Lose") else: print("Win")