結果

問題 No.8 N言っちゃダメゲーム
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 17:42:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 158 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 75,024 KB
実行使用メモリ 41,908 KB
最終ジャッジ日時 2024-06-23 23:49:25
合計ジャッジ時間 4,326 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,120 KB
testcase_01 AC 122 ms
41,536 KB
testcase_02 AC 109 ms
40,328 KB
testcase_03 AC 149 ms
41,908 KB
testcase_04 AC 144 ms
41,372 KB
testcase_05 AC 143 ms
41,404 KB
testcase_06 AC 142 ms
41,500 KB
testcase_07 AC 158 ms
41,692 KB
testcase_08 AC 152 ms
41,632 KB
testcase_09 AC 150 ms
41,724 KB
testcase_10 AC 151 ms
41,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {
	public static void main(String[] a) {
		Scanner s=new Scanner(System.in);
		s.nextInt();
		while(s.hasNext())System.out.println(s.nextInt()%(s.nextInt()+1)==1?"Lose":"Win");
	}
}
0