結果

問題 No.8 N言っちゃダメゲーム
ユーザー カニ戯(ryカニ戯(ry
提出日時 2015-02-26 17:42:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 227 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 71,516 KB
実行使用メモリ 56,624 KB
最終ジャッジ日時 2023-09-06 05:06:20
合計ジャッジ時間 4,249 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
55,912 KB
testcase_01 AC 120 ms
56,056 KB
testcase_02 AC 124 ms
56,012 KB
testcase_03 AC 142 ms
56,280 KB
testcase_04 AC 148 ms
56,324 KB
testcase_05 AC 144 ms
56,272 KB
testcase_06 AC 146 ms
56,400 KB
testcase_07 AC 146 ms
55,944 KB
testcase_08 AC 145 ms
56,624 KB
testcase_09 AC 145 ms
56,236 KB
testcase_10 AC 146 ms
56,356 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