結果

問題 No.478 一般門松列列
ユーザー fal_rndfal_rnd
提出日時 2017-01-27 22:41:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 3,717 ms
コンパイル使用メモリ 74,648 KB
実行使用メモリ 55,756 KB
最終ジャッジ日時 2024-06-06 04:53:00
合計ジャッジ時間 11,042 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
54,108 KB
testcase_01 AC 140 ms
54,108 KB
testcase_02 AC 141 ms
54,016 KB
testcase_03 AC 134 ms
53,804 KB
testcase_04 AC 136 ms
53,972 KB
testcase_05 AC 136 ms
54,052 KB
testcase_06 AC 138 ms
54,200 KB
testcase_07 AC 135 ms
54,000 KB
testcase_08 AC 141 ms
53,868 KB
testcase_09 AC 135 ms
54,136 KB
testcase_10 AC 135 ms
54,140 KB
testcase_11 AC 201 ms
55,636 KB
testcase_12 AC 203 ms
55,572 KB
testcase_13 AC 201 ms
55,040 KB
testcase_14 AC 201 ms
55,312 KB
testcase_15 AC 203 ms
55,756 KB
testcase_16 AC 178 ms
54,664 KB
testcase_17 AC 199 ms
55,480 KB
testcase_18 AC 187 ms
55,240 KB
testcase_19 AC 202 ms
55,504 KB
testcase_20 AC 196 ms
55,440 KB
testcase_21 AC 187 ms
55,272 KB
testcase_22 AC 182 ms
55,340 KB
testcase_23 AC 182 ms
55,584 KB
testcase_24 AC 191 ms
55,272 KB
testcase_25 AC 193 ms
55,504 KB
testcase_26 AC 170 ms
55,016 KB
testcase_27 AC 170 ms
55,004 KB
testcase_28 AC 165 ms
54,948 KB
testcase_29 AC 172 ms
54,688 KB
testcase_30 AC 184 ms
55,324 KB
testcase_31 AC 180 ms
55,196 KB
testcase_32 AC 177 ms
55,516 KB
testcase_33 AC 179 ms
55,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicodercontest155;

import java.util.*;
public class C{
	static Scanner s = new Scanner(System.in);

	static int[] ar = {1,3,2,4};

	public static void main(String[] args) {
		int n=s.nextInt(),k=s.nextInt();
		int[] kadomatsu = new int[n];
		kadomatsu[0]=1;
		for(int i=1;i<n;i++) {
			kadomatsu[i]=ar[i%4];
			if(i>n-1-k)
				kadomatsu[i]=kadomatsu[i-1];
		}
		System.out.println(Arrays.toString(kadomatsu).replaceAll("[\\[\\] ]", "").replaceAll(",", " "));
	}
}
0