結果

問題 No.1619 Coccinellidae
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-07-22 23:10:29
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 473 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 83,712 KB
最終ジャッジ日時 2024-07-17 19:54:07
合計ジャッジ時間 2,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 72 ms
82,048 KB
testcase_02 AC 77 ms
83,448 KB
testcase_03 RE -
testcase_04 AC 74 ms
83,584 KB
testcase_05 AC 69 ms
80,000 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 67 ms
80,164 KB
testcase_08 AC 69 ms
79,488 KB
testcase_09 RE -
testcase_10 AC 62 ms
76,544 KB
testcase_11 AC 70 ms
81,152 KB
testcase_12 RE -
testcase_13 AC 72 ms
83,712 KB
testcase_14 AC 74 ms
83,656 KB
testcase_15 RE -
testcase_16 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
ans = [i for i in range(n-1)]
ans.append(m-sum(ans))
now = 0
if k == 0:
    for i in ans:
        print(i)
    exir()
while True:
    if n-1-now < k:
        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