結果

問題 No.478 一般門松列列
ユーザー FromBooskaFromBooska
提出日時 2023-04-08 09:51:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 69,576 KB
最終ジャッジ日時 2024-10-03 05:47:20
合計ジャッジ時間 3,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 37 ms
52,572 KB
testcase_02 AC 36 ms
51,956 KB
testcase_03 AC 37 ms
52,484 KB
testcase_04 AC 37 ms
52,372 KB
testcase_05 AC 37 ms
52,524 KB
testcase_06 AC 37 ms
52,660 KB
testcase_07 AC 37 ms
52,212 KB
testcase_08 AC 37 ms
52,244 KB
testcase_09 AC 37 ms
52,572 KB
testcase_10 AC 37 ms
52,336 KB
testcase_11 AC 51 ms
68,604 KB
testcase_12 AC 49 ms
66,684 KB
testcase_13 AC 53 ms
68,372 KB
testcase_14 AC 52 ms
68,256 KB
testcase_15 AC 51 ms
68,248 KB
testcase_16 AC 50 ms
64,920 KB
testcase_17 AC 51 ms
67,524 KB
testcase_18 AC 50 ms
67,276 KB
testcase_19 AC 52 ms
69,576 KB
testcase_20 AC 52 ms
67,084 KB
testcase_21 AC 51 ms
67,640 KB
testcase_22 AC 49 ms
65,356 KB
testcase_23 AC 49 ms
64,448 KB
testcase_24 AC 48 ms
64,616 KB
testcase_25 AC 51 ms
67,216 KB
testcase_26 AC 48 ms
61,932 KB
testcase_27 AC 50 ms
63,684 KB
testcase_28 AC 49 ms
62,648 KB
testcase_29 AC 48 ms
62,752 KB
testcase_30 AC 52 ms
65,056 KB
testcase_31 AC 51 ms
64,804 KB
testcase_32 AC 48 ms
63,884 KB
testcase_33 AC 50 ms
65,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 1, 3, 2, 4, 1, 3, 2, 4, 1を続けて、非門松部分は同じ数字とすればいいか

N, K = map(int, input().split())
nxt = [0, 3, 4, 2, 1]
ans = []
for i in range(N):
    if i == 0:
        ans.append(1)
    elif i < N-K:
        ans.append(nxt[ans[-1]])
    else:
        ans.append(ans[-1])

print(*ans)
0