結果

問題 No.8 N言っちゃダメゲーム
ユーザー holegumaholeguma
提出日時 2015-07-26 04:14:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 49 ms / 5,000 ms
コード長 433 bytes
コンパイル時間 2,136 ms
コンパイル使用メモリ 73,592 KB
実行使用メモリ 37,012 KB
最終ジャッジ日時 2024-07-08 14:01:40
合計ジャッジ時間 2,924 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
36,896 KB
testcase_01 AC 42 ms
36,816 KB
testcase_02 AC 42 ms
36,808 KB
testcase_03 AC 47 ms
37,012 KB
testcase_04 AC 47 ms
36,788 KB
testcase_05 AC 47 ms
36,700 KB
testcase_06 AC 46 ms
36,740 KB
testcase_07 AC 49 ms
36,740 KB
testcase_08 AC 48 ms
36,800 KB
testcase_09 AC 49 ms
36,920 KB
testcase_10 AC 48 ms
36,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;

class Main{
public static void main(String[] args) throws IOException{
BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
String line="";
while((line=br.readLine())!=null){
int p=Integer.parseInt(line);
for(int i=0;i<p;i++){
String[] values=br.readLine().split(" ");
int k=Integer.parseInt(values[0]);
int n=Integer.parseInt(values[1]);
System.out.println((k-1)%(n+1)==0?"Lose":"Win");
}
}
}
}
0