結果

問題 No.1619 Coccinellidae
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-22 22:00:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 701 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 726,096 KB
最終ジャッジ日時 2024-07-17 17:48:55
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 MLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

Mを適当に分解する
後は転倒数Kの構築

大きい方から決めていけばよい

"""

import sys
from sys import stdin

N,M,K = map(int,stdin.readline().split())

lis = [0]

while len(lis) != N-1:

    lis.append(lis[-1] + 1)
    M -= lis[-1]

lis.append(M)

print (lis,file=sys.stderr)

ans = []

for i in range(N):

    if K == 0:
        ans += lis
        break

    elif K >= N-1-i:
        K -= N-1-i
        ans.append(lis[-1])
        del lis[-1]

    else:

        tmp = lis[-1]
        del lis[-1]

        while K > 0:
            ans.append(lis[-1])
            K -= 1
            del lis[-1]

        ans.append(tmp)
        ans += lis

        break

print (*ans)
0