結果

問題 No.1619 Coccinellidae
ユーザー lloyzlloyz
提出日時 2022-11-02 00:08:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 332 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 81,428 KB
最終ジャッジ日時 2024-07-16 11:37:49
合計ジャッジ時間 2,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,140 KB
testcase_01 AC 68 ms
80,400 KB
testcase_02 AC 68 ms
81,076 KB
testcase_03 AC 35 ms
52,612 KB
testcase_04 AC 65 ms
81,104 KB
testcase_05 AC 66 ms
78,920 KB
testcase_06 AC 36 ms
53,580 KB
testcase_07 AC 56 ms
76,924 KB
testcase_08 AC 57 ms
76,720 KB
testcase_09 AC 35 ms
52,944 KB
testcase_10 AC 55 ms
75,796 KB
testcase_11 AC 65 ms
79,820 KB
testcase_12 AC 36 ms
53,512 KB
testcase_13 AC 67 ms
81,380 KB
testcase_14 AC 67 ms
81,428 KB
testcase_15 AC 37 ms
51,948 KB
testcase_16 AC 37 ms
52,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())

A = [i for i in range(n)]
sum_ = sum(A)
if sum_ < m:
    A[n - 1] += m - sum_

ANS = [-1 for _ in range(n)]
f, l = 0, n - 1
for i in range(n):
    if k >= n - i - 1:
        ANS[i] = A[l]
        l -= 1
        k -= n - i - 1
    else:
        ANS[i] = A[f]
        f += 1
print(*ANS, sep='\n')
0