結果

問題 No.478 一般門松列列
ユーザー lloyzlloyz
提出日時 2023-08-09 07:07:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 70,380 KB
最終ジャッジ日時 2024-11-14 13:26:32
合計ジャッジ時間 3,440 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,320 KB
testcase_01 AC 37 ms
52,348 KB
testcase_02 AC 37 ms
52,140 KB
testcase_03 AC 38 ms
52,876 KB
testcase_04 AC 38 ms
52,280 KB
testcase_05 AC 37 ms
52,248 KB
testcase_06 AC 37 ms
53,156 KB
testcase_07 AC 38 ms
52,944 KB
testcase_08 AC 37 ms
52,528 KB
testcase_09 AC 36 ms
53,220 KB
testcase_10 AC 37 ms
52,200 KB
testcase_11 AC 55 ms
69,028 KB
testcase_12 AC 49 ms
66,032 KB
testcase_13 AC 56 ms
69,512 KB
testcase_14 AC 56 ms
70,364 KB
testcase_15 AC 56 ms
68,880 KB
testcase_16 AC 56 ms
66,768 KB
testcase_17 AC 57 ms
70,380 KB
testcase_18 AC 56 ms
69,612 KB
testcase_19 AC 56 ms
69,408 KB
testcase_20 AC 55 ms
69,100 KB
testcase_21 AC 55 ms
68,668 KB
testcase_22 AC 55 ms
67,396 KB
testcase_23 AC 55 ms
67,564 KB
testcase_24 AC 49 ms
64,980 KB
testcase_25 AC 57 ms
68,736 KB
testcase_26 AC 49 ms
63,192 KB
testcase_27 AC 55 ms
66,588 KB
testcase_28 AC 47 ms
62,352 KB
testcase_29 AC 48 ms
62,320 KB
testcase_30 AC 56 ms
68,752 KB
testcase_31 AC 55 ms
67,468 KB
testcase_32 AC 49 ms
64,304 KB
testcase_33 AC 55 ms
67,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

ANS = [0 for _ in range(n)]
num = n - k - 2
res = 0
for i in range(1, n - 1):
    if res == num:
        ANS[i + 1] = ANS[i]
        continue
    if ANS[i - 1] == ANS[i] == ANS[i + 1]:
        ANS[i] = 2
        ANS[i + 1] = 1
    elif ANS[i - 1] > ANS[i]:
        ANS[i + 1] = ANS[i - 1] + 1
    elif ANS[i - 1] < ANS[i]:
        ANS[i + 1] = ANS[i - 1] - 1
        if ANS[i + 1] == -1:
            ANS[i + 1] = 1
    res += 1
print(*ANS)
0