結果

問題 No.478 一般門松列列
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-04 01:41:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 3,712 ms
コンパイル使用メモリ 74,872 KB
実行使用メモリ 54,484 KB
最終ジャッジ日時 2024-07-01 02:06:15
合計ジャッジ時間 10,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,972 KB
testcase_01 AC 136 ms
54,168 KB
testcase_02 AC 137 ms
53,820 KB
testcase_03 AC 136 ms
53,880 KB
testcase_04 AC 134 ms
54,080 KB
testcase_05 AC 137 ms
53,976 KB
testcase_06 AC 137 ms
54,016 KB
testcase_07 AC 137 ms
54,168 KB
testcase_08 AC 137 ms
54,084 KB
testcase_09 AC 137 ms
54,060 KB
testcase_10 AC 135 ms
53,984 KB
testcase_11 AC 159 ms
54,300 KB
testcase_12 AC 164 ms
54,156 KB
testcase_13 AC 160 ms
54,108 KB
testcase_14 AC 175 ms
53,996 KB
testcase_15 AC 166 ms
54,444 KB
testcase_16 AC 155 ms
54,192 KB
testcase_17 AC 174 ms
54,348 KB
testcase_18 AC 167 ms
54,176 KB
testcase_19 AC 169 ms
54,484 KB
testcase_20 AC 166 ms
54,120 KB
testcase_21 AC 165 ms
54,300 KB
testcase_22 AC 161 ms
54,312 KB
testcase_23 AC 162 ms
54,028 KB
testcase_24 AC 164 ms
54,264 KB
testcase_25 AC 163 ms
54,164 KB
testcase_26 AC 140 ms
54,240 KB
testcase_27 AC 139 ms
54,240 KB
testcase_28 AC 138 ms
54,108 KB
testcase_29 AC 137 ms
54,064 KB
testcase_30 AC 166 ms
54,012 KB
testcase_31 AC 159 ms
54,388 KB
testcase_32 AC 148 ms
54,364 KB
testcase_33 AC 159 ms
54,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No478{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int n = sc.nextInt();
		int k = sc.nextInt();

		StringBuilder sb = new StringBuilder();
		int v = 2;
		boolean down = true;
		for(int i = 0; i < n; i++){
			if(i <= k){
				sb.append(0);
				sb.append(" ");
			}
			else{
				if(down){
					sb.append(v--);
					sb.append(" ");
					down = false;
				}else{
					sb.append(v);
					sb.append(" ");
					v += 2;
					down = true;
				}
			}
		}
		System.out.println(sb);
	}
}
0