結果

問題 No.8 N言っちゃダメゲーム
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-10 13:11:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 519 bytes
コンパイル時間 2,260 ms
コンパイル使用メモリ 75,152 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-07-04 13:31:45
合計ジャッジ時間 4,707 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,160 KB
testcase_01 AC 135 ms
40,972 KB
testcase_02 AC 135 ms
41,500 KB
testcase_03 AC 159 ms
41,408 KB
testcase_04 AC 164 ms
41,588 KB
testcase_05 AC 162 ms
41,604 KB
testcase_06 AC 162 ms
41,764 KB
testcase_07 AC 163 ms
41,456 KB
testcase_08 AC 160 ms
41,488 KB
testcase_09 AC 161 ms
41,616 KB
testcase_10 AC 156 ms
41,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int p = koko.nextInt();
        int[] n = new int[p];
        int[] k = new int[p];
        for(int i=0; i<p; i++){
            n[i] = koko.nextInt();
            k[i] = koko.nextInt();
            if((n[i]-1)%(k[i]+1)==0){
                System.out.println("Lose");
            }else{
                System.out.println("Win");
            }
        }
    }
}
0