結果

問題 No.257 N言っちゃダメゲーム (3)
ユーザー nCk_cvnCk_cv
提出日時 2015-08-01 17:20:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 2,338 ms
コンパイル使用メモリ 75,780 KB
実行使用メモリ 71,052 KB
平均クエリ数 3.70
最終ジャッジ日時 2024-07-16 21:06:29
合計ジャッジ時間 9,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 170 ms
69,620 KB
testcase_01 AC 167 ms
69,648 KB
testcase_02 AC 180 ms
70,572 KB
testcase_03 AC 166 ms
69,436 KB
testcase_04 AC 175 ms
70,968 KB
testcase_05 AC 180 ms
69,696 KB
testcase_06 AC 183 ms
70,620 KB
testcase_07 AC 179 ms
69,848 KB
testcase_08 AC 178 ms
70,452 KB
testcase_09 AC 179 ms
71,052 KB
testcase_10 AC 166 ms
69,456 KB
testcase_11 AC 168 ms
69,672 KB
testcase_12 AC 162 ms
69,488 KB
testcase_13 AC 175 ms
70,476 KB
testcase_14 AC 181 ms
70,228 KB
testcase_15 AC 178 ms
70,900 KB
testcase_16 AC 176 ms
69,856 KB
testcase_17 AC 165 ms
69,656 KB
testcase_18 AC 179 ms
70,172 KB
testcase_19 AC 167 ms
69,544 KB
testcase_20 AC 165 ms
69,160 KB
testcase_21 AC 179 ms
70,372 KB
testcase_22 AC 173 ms
70,172 KB
testcase_23 AC 179 ms
69,288 KB
testcase_24 AC 172 ms
69,696 KB
testcase_25 AC 180 ms
70,796 KB
testcase_26 AC 180 ms
70,816 KB
testcase_27 AC 179 ms
70,676 KB
testcase_28 AC 182 ms
70,644 KB
testcase_29 AC 180 ms
69,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        ArrayList<Integer> list = new ArrayList<Integer>();
        for(int i = n-1; i >= 0; i -= k+1) {
            list.add(i);
        }
        
        for(int i = list.size()-1; i >= 0; i--) {
            System.out.println(list.get(i));
            int in = sc.nextInt();
            if(in >= n) break;
        }
        
        
    }
}
0