結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 69 ms
81,536 KB
testcase_02 AC 72 ms
83,456 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 72 ms
83,456 KB
testcase_05 AC 70 ms
80,256 KB
testcase_06 AC 36 ms
52,480 KB
testcase_07 AC 66 ms
80,384 KB
testcase_08 AC 64 ms
79,616 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 60 ms
76,800 KB
testcase_11 AC 69 ms
80,768 KB
testcase_12 AC 37 ms
52,608 KB
testcase_13 AC 69 ms
83,420 KB
testcase_14 AC 72 ms
83,584 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

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)
    exit()
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