結果

問題 No.478 一般門松列列
ユーザー Mcpu3Mcpu3
提出日時 2018-09-29 13:51:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 432 ms / 2,000 ms
コード長 757 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 64,540 KB
最終ジャッジ日時 2024-10-12 08:14:44
合計ジャッジ時間 12,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,712 KB
testcase_01 AC 135 ms
53,884 KB
testcase_02 AC 136 ms
53,600 KB
testcase_03 AC 134 ms
54,096 KB
testcase_04 AC 134 ms
53,972 KB
testcase_05 AC 133 ms
53,896 KB
testcase_06 AC 133 ms
54,000 KB
testcase_07 AC 134 ms
54,048 KB
testcase_08 AC 134 ms
53,972 KB
testcase_09 AC 134 ms
53,716 KB
testcase_10 AC 134 ms
53,668 KB
testcase_11 AC 432 ms
62,504 KB
testcase_12 AC 398 ms
62,468 KB
testcase_13 AC 395 ms
62,564 KB
testcase_14 AC 396 ms
62,632 KB
testcase_15 AC 395 ms
62,532 KB
testcase_16 AC 284 ms
58,436 KB
testcase_17 AC 384 ms
62,308 KB
testcase_18 AC 339 ms
62,596 KB
testcase_19 AC 386 ms
62,640 KB
testcase_20 AC 371 ms
64,540 KB
testcase_21 AC 354 ms
62,620 KB
testcase_22 AC 301 ms
62,232 KB
testcase_23 AC 303 ms
62,376 KB
testcase_24 AC 341 ms
62,776 KB
testcase_25 AC 356 ms
62,496 KB
testcase_26 AC 242 ms
57,480 KB
testcase_27 AC 249 ms
57,096 KB
testcase_28 AC 194 ms
54,136 KB
testcase_29 AC 190 ms
54,416 KB
testcase_30 AC 325 ms
62,260 KB
testcase_31 AC 306 ms
62,344 KB
testcase_32 AC 275 ms
58,836 KB
testcase_33 AC 282 ms
60,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(), k = sc.nextInt(), min = 0, max = 1000000000, tmp = 1;
        sc.close();
        for (int i = 0; i < n; ++i) {
            if (k > i) {
                System.out.print(min);
                ++min;
            }
            else {
                if (tmp == 1) {
                    System.out.print(min);
                    ++min;
                }
                else {
                    System.out.print(max);
                    --max;
                }
                tmp ^= 1;
            }
            if (i != n - 1) System.out.print(" ");
        }
    }
}
0