結果

問題 No.115 遠足のおやつ
ユーザー terasaterasa
提出日時 2022-06-07 17:21:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,425 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 67,008 KB
最終ジャッジ日時 2024-09-21 04:53:58
合計ジャッジ時間 4,349 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,512 KB
testcase_01 AC 50 ms
63,628 KB
testcase_02 WA -
testcase_03 AC 47 ms
62,168 KB
testcase_04 WA -
testcase_05 AC 42 ms
55,476 KB
testcase_06 AC 43 ms
56,844 KB
testcase_07 AC 47 ms
62,972 KB
testcase_08 AC 46 ms
61,696 KB
testcase_09 AC 47 ms
62,260 KB
testcase_10 AC 47 ms
61,780 KB
testcase_11 AC 47 ms
61,104 KB
testcase_12 AC 47 ms
61,744 KB
testcase_13 AC 40 ms
55,364 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 50 ms
64,748 KB
testcase_18 AC 42 ms
56,436 KB
testcase_19 AC 50 ms
64,812 KB
testcase_20 AC 54 ms
63,748 KB
testcase_21 AC 44 ms
61,744 KB
testcase_22 WA -
testcase_23 AC 48 ms
63,256 KB
testcase_24 WA -
testcase_25 AC 52 ms
64,700 KB
testcase_26 AC 52 ms
62,892 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 51 ms
63,972 KB
testcase_30 WA -
testcase_31 AC 49 ms
63,820 KB
testcase_32 WA -
testcase_33 AC 51 ms
62,252 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 58 ms
64,676 KB
testcase_40 AC 41 ms
55,696 KB
testcase_41 AC 42 ms
56,072 KB
testcase_42 AC 43 ms
56,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


N, D, K = map(int, input().split())
dp = [[False for _ in range(D + 1)] for _ in range(K + 1)]
pre = [[0 for _ in range(D + 1)] for _ in range(K + 1)]
dp[0][0] = True

for i in range(1, N + 1):
    for j in range(K, 0, -1):
        for k in range(D, 0, -1):
            if k - i < 0:
                break
            if dp[j - 1][k - i] is False:
                continue
            dp[j][k] = True
            pre[j][k] = max(pre[j][k], i)

if dp[K][D] is False:
    print(-1)
else:
    ans = []
    cnt = K
    price = D
    for _ in range(K):
        p = pre[cnt][price]
        ans.append(p)
        cnt -= 1
        price -= p
    ans.reverse()
    print(*ans)
0