結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 166 ms
69,804 KB
testcase_01 AC 163 ms
70,036 KB
testcase_02 AC 166 ms
70,068 KB
testcase_03 AC 178 ms
69,740 KB
testcase_04 AC 172 ms
69,424 KB
testcase_05 AC 159 ms
69,100 KB
testcase_06 AC 183 ms
70,728 KB
testcase_07 AC 162 ms
69,572 KB
testcase_08 AC 160 ms
69,044 KB
testcase_09 AC 165 ms
69,568 KB
testcase_10 AC 163 ms
69,576 KB
testcase_11 AC 179 ms
70,512 KB
testcase_12 AC 170 ms
69,428 KB
testcase_13 AC 163 ms
69,856 KB
testcase_14 AC 179 ms
70,564 KB
testcase_15 AC 165 ms
69,616 KB
testcase_16 AC 170 ms
69,880 KB
testcase_17 AC 163 ms
69,852 KB
testcase_18 AC 173 ms
70,452 KB
testcase_19 AC 162 ms
70,080 KB
testcase_20 AC 163 ms
69,244 KB
testcase_21 AC 167 ms
69,568 KB
testcase_22 AC 163 ms
69,724 KB
testcase_23 AC 176 ms
70,584 KB
testcase_24 AC 166 ms
69,932 KB
testcase_25 AC 159 ms
69,536 KB
testcase_26 AC 165 ms
69,868 KB
testcase_27 AC 173 ms
71,092 KB
testcase_28 AC 164 ms
69,716 KB
testcase_29 AC 164 ms
69,492 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);
        }
        Collections.reverse(list);
        for(int i = 0; i <= list.size(); i++) {
            System.out.println(list.get(i));
            if(sc.nextInt() >= n) break;
        }
    }
}
0