結果

問題 No.1619 Coccinellidae
ユーザー lloyzlloyz
提出日時 2022-11-02 00:04:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 991 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 81,856 KB
最終ジャッジ日時 2024-07-16 11:35:42
合計ジャッジ時間 4,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,372 KB
testcase_01 WA -
testcase_02 AC 69 ms
81,696 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 WA -
testcase_05 AC 61 ms
79,188 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 55 ms
76,800 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 66 ms
79,620 KB
testcase_12 AC 37 ms
52,820 KB
testcase_13 WA -
testcase_14 AC 70 ms
81,572 KB
testcase_15 WA -
testcase_16 AC 36 ms
53,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = [i + 1 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