結果

問題 No.115 遠足のおやつ
ユーザー ntudantuda
提出日時 2024-05-22 19:46:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 270 bytes
コンパイル時間 493 ms
コンパイル使用メモリ 82,548 KB
実行使用メモリ 53,472 KB
最終ジャッジ日時 2024-05-22 19:46:28
合計ジャッジ時間 3,263 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,740 KB
testcase_01 AC 37 ms
52,964 KB
testcase_02 AC 35 ms
53,152 KB
testcase_03 AC 33 ms
53,400 KB
testcase_04 AC 33 ms
53,112 KB
testcase_05 AC 35 ms
52,300 KB
testcase_06 AC 35 ms
51,872 KB
testcase_07 AC 35 ms
53,248 KB
testcase_08 AC 35 ms
52,420 KB
testcase_09 AC 33 ms
52,348 KB
testcase_10 AC 33 ms
51,752 KB
testcase_11 AC 33 ms
52,336 KB
testcase_12 AC 33 ms
52,068 KB
testcase_13 AC 33 ms
52,304 KB
testcase_14 AC 33 ms
53,108 KB
testcase_15 AC 34 ms
52,204 KB
testcase_16 AC 34 ms
52,824 KB
testcase_17 AC 34 ms
51,876 KB
testcase_18 AC 34 ms
52,276 KB
testcase_19 AC 37 ms
52,792 KB
testcase_20 AC 34 ms
53,348 KB
testcase_21 AC 36 ms
52,460 KB
testcase_22 AC 34 ms
52,112 KB
testcase_23 AC 33 ms
52,752 KB
testcase_24 AC 33 ms
53,260 KB
testcase_25 AC 34 ms
52,668 KB
testcase_26 AC 34 ms
52,140 KB
testcase_27 AC 33 ms
53,300 KB
testcase_28 AC 35 ms
52,128 KB
testcase_29 AC 34 ms
52,016 KB
testcase_30 AC 33 ms
52,064 KB
testcase_31 AC 33 ms
53,228 KB
testcase_32 AC 33 ms
52,272 KB
testcase_33 AC 32 ms
52,888 KB
testcase_34 AC 33 ms
52,596 KB
testcase_35 AC 32 ms
53,164 KB
testcase_36 AC 33 ms
52,872 KB
testcase_37 AC 33 ms
53,428 KB
testcase_38 AC 34 ms
52,304 KB
testcase_39 AC 34 ms
52,576 KB
testcase_40 AC 34 ms
52,356 KB
testcase_41 AC 34 ms
52,620 KB
testcase_42 AC 35 ms
53,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D, K = map(int, input().split())
X = list(range(1, K + 1))

if sum(X) > D:
    print(-1)
    exit()

dif = D - sum(X)
for i in range(K):
    j = K - i - 1
    add = min(dif, N - X[j] - i)
    X[j] += add
    dif -= add
if dif == 0:
    print(*X)
else:
    print(-1)

0