結果

問題 No.478 一般門松列列
ユーザー 37zigen37zigen
提出日時 2017-01-28 01:25:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 76,100 KB
実行使用メモリ 50,108 KB
最終ジャッジ日時 2024-06-06 06:30:42
合計ジャッジ時間 11,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,220 KB
testcase_01 AC 112 ms
40,692 KB
testcase_02 AC 104 ms
40,200 KB
testcase_03 AC 119 ms
41,100 KB
testcase_04 AC 120 ms
41,332 KB
testcase_05 AC 114 ms
40,896 KB
testcase_06 AC 117 ms
41,272 KB
testcase_07 AC 112 ms
41,124 KB
testcase_08 AC 106 ms
39,928 KB
testcase_09 AC 117 ms
41,192 KB
testcase_10 AC 114 ms
41,208 KB
testcase_11 AC 362 ms
50,092 KB
testcase_12 AC 370 ms
45,264 KB
testcase_13 AC 368 ms
50,032 KB
testcase_14 AC 363 ms
50,096 KB
testcase_15 AC 355 ms
50,108 KB
testcase_16 AC 265 ms
46,476 KB
testcase_17 AC 354 ms
50,020 KB
testcase_18 AC 314 ms
49,416 KB
testcase_19 AC 359 ms
49,916 KB
testcase_20 AC 334 ms
49,768 KB
testcase_21 AC 317 ms
49,664 KB
testcase_22 AC 283 ms
48,692 KB
testcase_23 AC 279 ms
47,704 KB
testcase_24 AC 311 ms
49,268 KB
testcase_25 AC 355 ms
49,892 KB
testcase_26 AC 224 ms
44,808 KB
testcase_27 AC 223 ms
44,628 KB
testcase_28 AC 185 ms
41,808 KB
testcase_29 AC 181 ms
41,548 KB
testcase_30 AC 286 ms
49,272 KB
testcase_31 AC 271 ms
47,564 KB
testcase_32 AC 239 ms
46,048 KB
testcase_33 AC 262 ms
47,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.*;
import java.util.concurrent.SynchronousQueue;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int k = sc.nextInt();
		int upper = 1_000_000_00;
		int lower = upper - 1;
		int pre = -1;
		for (int i = 0; i < n - k; ++i) {
			if (i % 2 == 0) {
				System.out.print(upper);
				pre = upper;
				++upper;
			} else {
				System.out.print(lower);
				pre = lower;
				--lower;
			}
			if (i != n - 1)
				System.out.print(" ");
		}
		for (int i = n - k; i < n; ++i) {	
			System.out.print(pre);
			if (i != n - 1)
				System.out.print(" ");
		}
		System.out.println();
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0