結果

問題 No.115 遠足のおやつ
ユーザー rlangevinrlangevin
提出日時 2023-01-16 01:00:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 53,728 KB
最終ジャッジ日時 2024-06-09 10:45:48
合計ジャッジ時間 2,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,016 KB
testcase_01 AC 33 ms
52,852 KB
testcase_02 AC 33 ms
52,200 KB
testcase_03 AC 33 ms
53,420 KB
testcase_04 AC 33 ms
53,504 KB
testcase_05 AC 32 ms
51,744 KB
testcase_06 AC 32 ms
53,064 KB
testcase_07 AC 33 ms
52,956 KB
testcase_08 AC 32 ms
53,092 KB
testcase_09 AC 34 ms
52,188 KB
testcase_10 AC 33 ms
52,712 KB
testcase_11 AC 32 ms
52,244 KB
testcase_12 AC 36 ms
52,756 KB
testcase_13 AC 32 ms
52,488 KB
testcase_14 AC 33 ms
52,712 KB
testcase_15 AC 33 ms
52,576 KB
testcase_16 AC 32 ms
53,144 KB
testcase_17 AC 32 ms
53,032 KB
testcase_18 AC 32 ms
52,572 KB
testcase_19 AC 32 ms
52,296 KB
testcase_20 AC 31 ms
52,504 KB
testcase_21 AC 33 ms
51,692 KB
testcase_22 AC 32 ms
52,272 KB
testcase_23 AC 33 ms
52,856 KB
testcase_24 AC 33 ms
52,344 KB
testcase_25 AC 32 ms
52,636 KB
testcase_26 AC 33 ms
52,624 KB
testcase_27 AC 32 ms
52,228 KB
testcase_28 AC 33 ms
53,060 KB
testcase_29 AC 33 ms
52,492 KB
testcase_30 AC 33 ms
53,728 KB
testcase_31 AC 33 ms
53,700 KB
testcase_32 AC 32 ms
53,232 KB
testcase_33 AC 32 ms
52,756 KB
testcase_34 AC 31 ms
52,448 KB
testcase_35 AC 32 ms
52,260 KB
testcase_36 AC 31 ms
52,632 KB
testcase_37 AC 32 ms
53,276 KB
testcase_38 AC 33 ms
53,432 KB
testcase_39 AC 33 ms
52,016 KB
testcase_40 AC 31 ms
52,704 KB
testcase_41 AC 32 ms
53,096 KB
testcase_42 AC 33 ms
52,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Gauss(n):
    return n * (n + 1)//2

N, D, K = map(int, input().split())
if D < Gauss(K) or Gauss(K) + K * (N - K) < D:
    print(-1)
    exit()
ans = list(range(1, K + 1))
if N == K:
    if D == Gauss(K):
        print(*ans)
    else:
        print(-1)
    exit()
v = D - Gauss(K)
L = [N - K] * (v//(N - K))
if v%(N - K):
    L.append(v%(N - K))
for i in range(K - len(L)):
    L.append(0)
L.reverse()
for i in range(K):
    ans[i] += L[i]
print(*ans)
0