結果

問題 No.8 N言っちゃダメゲーム
ユーザー popketlepopketle
提出日時 2019-12-22 04:40:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 216 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 10,536 KB
実行使用メモリ 7,932 KB
最終ジャッジ日時 2023-10-11 15:19:07
合計ジャッジ時間 1,020 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,776 KB
testcase_01 AC 16 ms
7,896 KB
testcase_02 AC 15 ms
7,760 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 15 ms
7,760 KB
testcase_06 WA -
testcase_07 AC 16 ms
7,764 KB
testcase_08 AC 16 ms
7,932 KB
testcase_09 AC 16 ms
7,776 KB
testcase_10 AC 16 ms
7,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p=int(input())
NK=[list(map(int,input().split())) for _ in range(p)]

ans=[]
for n,k in NK:
  if n<=k:
    ans.append('Win')
  elif (n//k)<=k:
    ans.append('Win')
  else:
    ans.append('Lose')
print(*ans,sep='\n')
0