結果

問題 No.478 一般門松列列
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-25 02:13:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 546 bytes
コンパイル時間 2,528 ms
コンパイル使用メモリ 76,404 KB
実行使用メモリ 50,572 KB
最終ジャッジ日時 2024-11-06 21:41:30
合計ジャッジ時間 13,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,584 KB
testcase_01 AC 123 ms
41,068 KB
testcase_02 AC 136 ms
41,216 KB
testcase_03 AC 135 ms
41,200 KB
testcase_04 AC 135 ms
41,088 KB
testcase_05 AC 135 ms
41,512 KB
testcase_06 AC 135 ms
41,272 KB
testcase_07 AC 137 ms
41,668 KB
testcase_08 AC 136 ms
41,452 KB
testcase_09 AC 137 ms
41,248 KB
testcase_10 AC 139 ms
41,224 KB
testcase_11 AC 422 ms
50,572 KB
testcase_12 AC 446 ms
49,904 KB
testcase_13 AC 419 ms
50,276 KB
testcase_14 AC 420 ms
50,008 KB
testcase_15 AC 408 ms
49,660 KB
testcase_16 AC 284 ms
48,288 KB
testcase_17 AC 402 ms
50,016 KB
testcase_18 AC 345 ms
49,732 KB
testcase_19 AC 417 ms
50,056 KB
testcase_20 AC 382 ms
50,304 KB
testcase_21 AC 368 ms
50,004 KB
testcase_22 AC 303 ms
49,384 KB
testcase_23 AC 307 ms
49,044 KB
testcase_24 AC 361 ms
49,432 KB
testcase_25 AC 409 ms
49,824 KB
testcase_26 AC 251 ms
45,928 KB
testcase_27 AC 250 ms
45,908 KB
testcase_28 AC 184 ms
40,708 KB
testcase_29 AC 198 ms
41,724 KB
testcase_30 AC 321 ms
49,296 KB
testcase_31 AC 303 ms
48,764 KB
testcase_32 AC 275 ms
47,368 KB
testcase_33 AC 286 ms
48,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int k = sc.nextInt();
		List<Integer> list = new ArrayList<>();
		for (int i=0; i<n; i++) {
			if (i%4==0) {list.add(1);}
			else if (i%4==1) {list.add(3);}
			else if (i%4==2) {list.add(2);}
			else if (i%4==3) {list.add(4);}
		}
		for (int i=0; i<k; i++) {
			list.add(0,1);
		}
		for (int i=0; i<n; i++) {
			System.out.print(list.get(i));
			if (i!=n-1) {System.out.print(" ");}
		}
	}
}
0