結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 62 ms
75,776 KB
testcase_02 WA -
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 69 ms
80,256 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 58 ms
72,064 KB
testcase_08 WA -
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 54 ms
70,144 KB
testcase_11 WA -
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 65 ms
80,000 KB
testcase_14 WA -
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 38 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

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

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

"""

import sys
from sys import stdin

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

if N == 1:
    print (M)
    sys.exit()

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]

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

        ans.append(tmp)

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

print ("\n".join(map(str,ans)))
0