結果

問題 No.478 一般門松列列
ユーザー 37zigen37zigen
提出日時 2017-01-28 01:25:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 423 ms / 2,000 ms
コード長 790 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 76,608 KB
実行使用メモリ 51,072 KB
最終ジャッジ日時 2024-12-23 18:45:06
合計ジャッジ時間 13,372 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,192 KB
testcase_01 AC 137 ms
41,148 KB
testcase_02 AC 140 ms
41,016 KB
testcase_03 AC 137 ms
41,176 KB
testcase_04 AC 138 ms
41,316 KB
testcase_05 AC 125 ms
40,028 KB
testcase_06 AC 140 ms
41,044 KB
testcase_07 AC 138 ms
41,284 KB
testcase_08 AC 139 ms
41,000 KB
testcase_09 AC 141 ms
41,356 KB
testcase_10 AC 144 ms
41,312 KB
testcase_11 AC 419 ms
49,880 KB
testcase_12 AC 410 ms
51,072 KB
testcase_13 AC 423 ms
50,208 KB
testcase_14 AC 416 ms
50,368 KB
testcase_15 AC 398 ms
50,256 KB
testcase_16 AC 295 ms
46,712 KB
testcase_17 AC 400 ms
50,376 KB
testcase_18 AC 356 ms
49,628 KB
testcase_19 AC 406 ms
50,140 KB
testcase_20 AC 381 ms
49,896 KB
testcase_21 AC 366 ms
49,984 KB
testcase_22 AC 316 ms
48,536 KB
testcase_23 AC 319 ms
48,620 KB
testcase_24 AC 353 ms
49,776 KB
testcase_25 AC 391 ms
50,248 KB
testcase_26 AC 255 ms
44,508 KB
testcase_27 AC 258 ms
45,944 KB
testcase_28 AC 211 ms
41,836 KB
testcase_29 AC 213 ms
41,832 KB
testcase_30 AC 333 ms
49,140 KB
testcase_31 AC 308 ms
48,520 KB
testcase_32 AC 277 ms
45,984 KB
testcase_33 AC 297 ms
46,688 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