結果

問題 No.478 一般門松列列
ユーザー tentententen
提出日時 2021-02-04 11:41:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 922 bytes
コンパイル時間 2,258 ms
コンパイル使用メモリ 77,492 KB
実行使用メモリ 56,692 KB
最終ジャッジ日時 2024-06-30 16:40:38
合計ジャッジ時間 9,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,044 KB
testcase_01 AC 132 ms
53,912 KB
testcase_02 AC 133 ms
54,016 KB
testcase_03 AC 132 ms
54,064 KB
testcase_04 AC 134 ms
54,056 KB
testcase_05 AC 132 ms
53,836 KB
testcase_06 AC 133 ms
54,160 KB
testcase_07 AC 131 ms
54,076 KB
testcase_08 AC 134 ms
54,364 KB
testcase_09 AC 133 ms
54,184 KB
testcase_10 AC 133 ms
54,068 KB
testcase_11 AC 173 ms
56,436 KB
testcase_12 AC 173 ms
56,276 KB
testcase_13 AC 178 ms
56,368 KB
testcase_14 AC 175 ms
56,124 KB
testcase_15 AC 174 ms
56,004 KB
testcase_16 AC 167 ms
53,964 KB
testcase_17 AC 172 ms
56,488 KB
testcase_18 AC 173 ms
56,368 KB
testcase_19 AC 173 ms
56,196 KB
testcase_20 AC 172 ms
56,512 KB
testcase_21 AC 167 ms
56,412 KB
testcase_22 AC 166 ms
54,140 KB
testcase_23 AC 167 ms
54,076 KB
testcase_24 AC 168 ms
56,216 KB
testcase_25 AC 172 ms
56,220 KB
testcase_26 AC 142 ms
54,084 KB
testcase_27 AC 140 ms
54,176 KB
testcase_28 AC 136 ms
53,936 KB
testcase_29 AC 136 ms
54,060 KB
testcase_30 AC 167 ms
56,692 KB
testcase_31 AC 165 ms
54,256 KB
testcase_32 AC 150 ms
55,756 KB
testcase_33 AC 149 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int count = n - k - 2;
        int left = 100000000;
        int right = 100000001;
        ArrayList<Integer> ans = new ArrayList<>();
        ans.add(left);
        ans.add(right);
        for (int i = 0; i < count; i++) {
            if (i % 2 == 0) {
                left--;
                ans.add(left);
            } else {
                right++;
                ans.add(right);
            }
        }
        while (ans.size() < n) {
            ans.add(left);
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < n; i++) {
            if (i > 0) {
                sb.append(" ");
            }
            sb.append(ans.get(i));
        }
        System.out.println(sb);
    }
}
0