結果

問題 No.478 一般門松列列
ユーザー tanzakutanzaku
提出日時 2017-01-27 22:29:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 3,815 ms
コンパイル使用メモリ 80,396 KB
実行使用メモリ 63,656 KB
最終ジャッジ日時 2024-06-06 04:43:04
合計ジャッジ時間 14,579 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 154 ms
54,196 KB
testcase_01 AC 150 ms
54,200 KB
testcase_02 AC 150 ms
54,284 KB
testcase_03 AC 152 ms
54,248 KB
testcase_04 AC 143 ms
54,316 KB
testcase_05 AC 152 ms
54,196 KB
testcase_06 AC 150 ms
54,496 KB
testcase_07 AC 155 ms
54,196 KB
testcase_08 AC 157 ms
54,080 KB
testcase_09 AC 151 ms
53,856 KB
testcase_10 AC 151 ms
54,120 KB
testcase_11 AC 370 ms
63,356 KB
testcase_12 AC 377 ms
63,376 KB
testcase_13 AC 370 ms
63,656 KB
testcase_14 AC 359 ms
63,504 KB
testcase_15 AC 357 ms
63,256 KB
testcase_16 AC 283 ms
57,788 KB
testcase_17 AC 354 ms
63,468 KB
testcase_18 AC 319 ms
61,084 KB
testcase_19 AC 359 ms
63,444 KB
testcase_20 AC 340 ms
62,872 KB
testcase_21 AC 333 ms
61,876 KB
testcase_22 AC 299 ms
58,216 KB
testcase_23 AC 302 ms
58,372 KB
testcase_24 AC 318 ms
61,180 KB
testcase_25 AC 349 ms
63,352 KB
testcase_26 AC 220 ms
54,352 KB
testcase_27 AC 229 ms
54,912 KB
testcase_28 AC 226 ms
54,444 KB
testcase_29 AC 209 ms
54,320 KB
testcase_30 AC 308 ms
60,784 KB
testcase_31 AC 299 ms
58,228 KB
testcase_32 AC 284 ms
57,392 KB
testcase_33 AC 295 ms
57,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

public class _478 {
	public static void main(String[] args) throws IOException {
		new _478().solve();
	}

	void solve() throws IOException {
		try (final Scanner in = new Scanner(System.in)) {
			int n = in.nextInt();
			int k = in.nextInt();
			int m = n - k - 2;
			System.out.print("0 10000000");
			int last = 10000000;
			for (int i = 0; i < m; i++) {
				int v = i % 2 == 0 ? (i+1) : 10000000-i;
				last = v;
				System.out.print(" " + v);
			}
			for (int i = m + 2; i < n; i++) {
				System.out.print(" " + last);
			}
			System.out.println();
		}
	}
	
	// for debug
	static void dump(Object... o) {
		System.err.println(Arrays.deepToString(o));
	}
}
0