結果

問題 No.1619 Coccinellidae
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-22 23:07:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,784 KB
最終ジャッジ日時 2024-07-17 19:46:58
合計ジャッジ時間 2,966 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,632 KB
testcase_01 AC 71 ms
84,068 KB
testcase_02 AC 76 ms
86,784 KB
testcase_03 WA -
testcase_04 AC 76 ms
86,668 KB
testcase_05 AC 70 ms
82,304 KB
testcase_06 AC 37 ms
54,484 KB
testcase_07 AC 68 ms
82,452 KB
testcase_08 AC 70 ms
81,852 KB
testcase_09 WA -
testcase_10 AC 66 ms
81,204 KB
testcase_11 AC 70 ms
83,456 KB
testcase_12 AC 36 ms
53,496 KB
testcase_13 AC 74 ms
86,528 KB
testcase_14 AC 74 ms
86,784 KB
testcase_15 AC 39 ms
53,504 KB
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m,k = map(int,input().split())
ans = [i for i in range(n-1)]
ans.append(m-sum(ans))
ans2 = deque(ans)

now = 0
while True:
    if n-1-now < k:
        ans2.appendleft(ans2.pop())
        k -= n-1-now
        now += 1
    else:
        ans3 = []
        for i in range(now):
            ans3.append(ans[-1-i])
        for i in range(now,n):
            ans3.append(ans[i-now])
        ans3.insert(-k,ans3.pop())
        for i in ans3:
            print(i)
        exit()
0