結果

問題 No.478 一般門松列列
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-01 16:48:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 97 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 67,852 KB
最終ジャッジ日時 2024-11-27 22:02:34
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,764 KB
testcase_01 AC 35 ms
52,672 KB
testcase_02 AC 35 ms
53,156 KB
testcase_03 AC 36 ms
52,152 KB
testcase_04 AC 35 ms
51,696 KB
testcase_05 AC 36 ms
51,852 KB
testcase_06 AC 36 ms
52,212 KB
testcase_07 AC 37 ms
51,936 KB
testcase_08 AC 35 ms
52,024 KB
testcase_09 AC 36 ms
52,280 KB
testcase_10 AC 36 ms
51,684 KB
testcase_11 AC 47 ms
67,128 KB
testcase_12 AC 47 ms
67,852 KB
testcase_13 AC 47 ms
66,212 KB
testcase_14 AC 47 ms
66,420 KB
testcase_15 AC 46 ms
66,320 KB
testcase_16 AC 44 ms
62,244 KB
testcase_17 AC 47 ms
66,512 KB
testcase_18 AC 46 ms
64,792 KB
testcase_19 AC 47 ms
67,820 KB
testcase_20 AC 47 ms
66,076 KB
testcase_21 AC 46 ms
64,840 KB
testcase_22 AC 46 ms
63,816 KB
testcase_23 AC 45 ms
63,420 KB
testcase_24 AC 48 ms
64,072 KB
testcase_25 AC 48 ms
66,600 KB
testcase_26 AC 45 ms
62,792 KB
testcase_27 AC 46 ms
62,732 KB
testcase_28 AC 45 ms
62,296 KB
testcase_29 AC 44 ms
62,404 KB
testcase_30 AC 45 ms
64,176 KB
testcase_31 AC 45 ms
62,960 KB
testcase_32 AC 44 ms
63,152 KB
testcase_33 AC 46 ms
63,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
ans = [1, 3, 2, 4]*n
ans = [1]*k+ans
ans = ans[0:n]
print(*ans)
0