結果

問題 No.478 一般門松列列
ユーザー lloyzlloyz
提出日時 2023-08-09 07:06:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 443 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 69,980 KB
最終ジャッジ日時 2024-11-14 13:25:41
合計ジャッジ時間 4,312 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,272 KB
testcase_01 AC 36 ms
52,568 KB
testcase_02 AC 36 ms
52,140 KB
testcase_03 AC 37 ms
52,368 KB
testcase_04 AC 37 ms
52,424 KB
testcase_05 AC 38 ms
52,332 KB
testcase_06 AC 36 ms
53,008 KB
testcase_07 AC 37 ms
52,124 KB
testcase_08 AC 35 ms
53,140 KB
testcase_09 WA -
testcase_10 AC 35 ms
52,532 KB
testcase_11 AC 55 ms
69,440 KB
testcase_12 AC 49 ms
65,652 KB
testcase_13 AC 53 ms
68,732 KB
testcase_14 AC 58 ms
69,980 KB
testcase_15 AC 57 ms
69,576 KB
testcase_16 AC 56 ms
66,700 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 56 ms
68,788 KB
testcase_20 WA -
testcase_21 AC 54 ms
68,380 KB
testcase_22 AC 55 ms
67,076 KB
testcase_23 AC 54 ms
67,108 KB
testcase_24 AC 50 ms
65,120 KB
testcase_25 AC 56 ms
67,640 KB
testcase_26 AC 48 ms
62,176 KB
testcase_27 AC 52 ms
65,172 KB
testcase_28 WA -
testcase_29 AC 48 ms
62,640 KB
testcase_30 AC 53 ms
67,124 KB
testcase_31 AC 53 ms
66,896 KB
testcase_32 AC 47 ms
63,028 KB
testcase_33 AC 53 ms
66,108 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:
        break
    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