結果

問題 No.115 遠足のおやつ
ユーザー rlangevinrlangevin
提出日時 2023-01-16 00:54:34
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 331 bytes
コンパイル時間 1,207 ms
コンパイル使用メモリ 81,320 KB
実行使用メモリ 66,360 KB
最終ジャッジ日時 2024-06-09 10:42:04
合計ジャッジ時間 3,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,240 KB
testcase_01 AC 38 ms
52,012 KB
testcase_02 AC 37 ms
52,968 KB
testcase_03 AC 37 ms
51,948 KB
testcase_04 AC 38 ms
53,024 KB
testcase_05 AC 38 ms
52,904 KB
testcase_06 AC 37 ms
52,768 KB
testcase_07 AC 36 ms
53,092 KB
testcase_08 AC 35 ms
53,004 KB
testcase_09 AC 37 ms
52,540 KB
testcase_10 AC 37 ms
52,204 KB
testcase_11 AC 34 ms
52,636 KB
testcase_12 AC 37 ms
52,488 KB
testcase_13 AC 36 ms
53,288 KB
testcase_14 AC 39 ms
52,952 KB
testcase_15 AC 39 ms
52,036 KB
testcase_16 AC 39 ms
52,488 KB
testcase_17 AC 38 ms
53,236 KB
testcase_18 AC 38 ms
52,084 KB
testcase_19 AC 38 ms
53,064 KB
testcase_20 AC 36 ms
51,620 KB
testcase_21 AC 37 ms
53,128 KB
testcase_22 AC 38 ms
51,820 KB
testcase_23 AC 36 ms
52,156 KB
testcase_24 AC 35 ms
52,612 KB
testcase_25 AC 36 ms
52,240 KB
testcase_26 AC 39 ms
52,084 KB
testcase_27 AC 37 ms
52,016 KB
testcase_28 AC 37 ms
52,488 KB
testcase_29 AC 38 ms
53,460 KB
testcase_30 AC 36 ms
52,236 KB
testcase_31 AC 38 ms
52,080 KB
testcase_32 AC 36 ms
51,900 KB
testcase_33 AC 37 ms
51,896 KB
testcase_34 AC 36 ms
52,428 KB
testcase_35 AC 36 ms
52,012 KB
testcase_36 AC 37 ms
53,048 KB
testcase_37 AC 36 ms
53,104 KB
testcase_38 WA -
testcase_39 AC 38 ms
52,268 KB
testcase_40 AC 38 ms
52,216 KB
testcase_41 AC 38 ms
52,684 KB
testcase_42 RE -
権限があれば一括ダウンロードができます

ソースコード

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))
v = D - Gauss(K)
L = [N - K] * (v//(N - K))
L.append(v%(N - K))
L.extend([0] * (K - len(L)))
L.reverse()
for i in range(K):
    ans[i] += L[i]
print(*ans)
0