結果

問題 No.115 遠足のおやつ
ユーザー tcltktcltk
提出日時 2021-01-17 02:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 5,000 ms
コード長 1,314 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 159,360 KB
最終ジャッジ日時 2024-06-11 00:07:14
合計ジャッジ時間 10,183 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
89,088 KB
testcase_01 AC 157 ms
89,728 KB
testcase_02 AC 170 ms
89,600 KB
testcase_03 AC 156 ms
89,728 KB
testcase_04 AC 280 ms
121,984 KB
testcase_05 AC 149 ms
89,088 KB
testcase_06 AC 146 ms
89,088 KB
testcase_07 AC 171 ms
89,984 KB
testcase_08 AC 161 ms
89,344 KB
testcase_09 AC 176 ms
92,928 KB
testcase_10 AC 171 ms
92,672 KB
testcase_11 AC 157 ms
89,600 KB
testcase_12 AC 168 ms
89,728 KB
testcase_13 AC 158 ms
89,088 KB
testcase_14 AC 180 ms
89,600 KB
testcase_15 AC 229 ms
102,656 KB
testcase_16 AC 252 ms
112,896 KB
testcase_17 AC 196 ms
94,208 KB
testcase_18 AC 153 ms
89,600 KB
testcase_19 AC 169 ms
90,112 KB
testcase_20 AC 169 ms
89,728 KB
testcase_21 AC 161 ms
89,600 KB
testcase_22 AC 199 ms
96,256 KB
testcase_23 AC 170 ms
89,856 KB
testcase_24 AC 202 ms
95,616 KB
testcase_25 AC 199 ms
94,592 KB
testcase_26 AC 174 ms
90,368 KB
testcase_27 AC 187 ms
93,952 KB
testcase_28 AC 178 ms
89,856 KB
testcase_29 AC 185 ms
93,184 KB
testcase_30 AC 197 ms
95,488 KB
testcase_31 AC 182 ms
92,800 KB
testcase_32 AC 245 ms
111,488 KB
testcase_33 AC 187 ms
90,368 KB
testcase_34 AC 294 ms
121,984 KB
testcase_35 AC 196 ms
94,208 KB
testcase_36 AC 186 ms
95,744 KB
testcase_37 AC 256 ms
111,360 KB
testcase_38 AC 376 ms
159,232 KB
testcase_39 AC 378 ms
159,360 KB
testcase_40 AC 147 ms
89,088 KB
testcase_41 AC 145 ms
89,088 KB
testcase_42 AC 157 ms
89,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """30 40 4
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N, D, K = map(int, input().split())

    dp = [[[list() for _ in range(K+1)] for _ in range(D+1)] for _ in range(N+1)]
    dp[0][0][0] = [0]
    for n in range(0, N):
        for d in range(0, D+1):
            for k in range(0, K+1):
                if dp[n][d][k]:
                    if d + (n+1) <= D and k + 1 <= K:
                        if dp[n+1][d+(n+1)][k+1]:
                            dp[n+1][d+(n+1)][k+1] = min(dp[n+1][d+(n+1)][k+1], dp[n][d][k] + [n+1])
                        else:
                            dp[n+1][d+(n+1)][k+1] = dp[n][d][k] + [n+1]
                    if dp[n+1][d][k]:
                        dp[n+1][d][k] = min(dp[n+1][d][k], dp[n][d][k])
                    else:
                        dp[n+1][d][k] = dp[n][d][k]

    if dp[N][D][K]:
        print(*dp[N][D][K][1:])
    else:
        print(-1)


if __name__ == '__main__':
    main()
0