結果

問題 No.478 一般門松列列
ユーザー htensaihtensai
提出日時 2019-11-19 08:51:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 562 bytes
コンパイル時間 2,192 ms
コンパイル使用メモリ 74,824 KB
実行使用メモリ 54,120 KB
最終ジャッジ日時 2024-10-03 06:21:56
合計ジャッジ時間 7,355 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
53,828 KB
testcase_01 AC 116 ms
54,068 KB
testcase_02 AC 108 ms
54,120 KB
testcase_03 AC 119 ms
53,856 KB
testcase_04 AC 113 ms
54,024 KB
testcase_05 AC 111 ms
53,968 KB
testcase_06 AC 111 ms
54,040 KB
testcase_07 AC 99 ms
52,816 KB
testcase_08 AC 104 ms
52,956 KB
testcase_09 AC 111 ms
53,296 KB
testcase_10 AC 109 ms
52,908 KB
testcase_11 AC 144 ms
42,256 KB
testcase_12 AC 143 ms
42,132 KB
testcase_13 AC 142 ms
41,748 KB
testcase_14 AC 139 ms
41,664 KB
testcase_15 AC 140 ms
41,528 KB
testcase_16 AC 134 ms
41,440 KB
testcase_17 AC 151 ms
42,160 KB
testcase_18 AC 138 ms
40,976 KB
testcase_19 AC 152 ms
42,300 KB
testcase_20 AC 145 ms
41,876 KB
testcase_21 AC 121 ms
41,696 KB
testcase_22 AC 132 ms
41,584 KB
testcase_23 AC 134 ms
41,656 KB
testcase_24 AC 129 ms
41,756 KB
testcase_25 AC 125 ms
41,720 KB
testcase_26 AC 105 ms
41,352 KB
testcase_27 AC 115 ms
41,352 KB
testcase_28 AC 103 ms
41,328 KB
testcase_29 AC 114 ms
41,628 KB
testcase_30 AC 126 ms
41,536 KB
testcase_31 AC 137 ms
41,608 KB
testcase_32 AC 120 ms
41,608 KB
testcase_33 AC 127 ms
40,968 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 max = 1000000000;
		int min = 0;
		int prev = 0;
		StringBuilder sb = new StringBuilder();
		for (int i = 0; i < n; i++) {
		    if (i != 0) {
		        sb.append(" ");
		    }
		    if (i < n - k) {
		        if (i % 2 == 0) {
		            prev = min + i;
		        } else {
		            prev = max - i;
		        }
		    }
		    sb.append(prev);
		}
		System.out.println(sb);
	}
}
0