結果

問題 No.115 遠足のおやつ
ユーザー tcltktcltk
提出日時 2021-01-16 16:41:37
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,056 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 853,084 KB
最終ジャッジ日時 2024-11-27 20:12:11
合計ジャッジ時間 73,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
88,960 KB
testcase_01 AC 153 ms
89,472 KB
testcase_02 AC 177 ms
95,888 KB
testcase_03 AC 151 ms
89,856 KB
testcase_04 MLE -
testcase_05 AC 327 ms
88,832 KB
testcase_06 AC 143 ms
89,044 KB
testcase_07 AC 171 ms
90,192 KB
testcase_08 AC 157 ms
89,984 KB
testcase_09 AC 170 ms
93,056 KB
testcase_10 AC 171 ms
93,056 KB
testcase_11 AC 156 ms
89,728 KB
testcase_12 AC 160 ms
89,472 KB
testcase_13 AC 144 ms
89,088 KB
testcase_14 AC 389 ms
175,104 KB
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 178 ms
89,600 KB
testcase_19 AC 199 ms
93,184 KB
testcase_20 AC 192 ms
100,480 KB
testcase_21 AC 158 ms
89,856 KB
testcase_22 MLE -
testcase_23 AC 230 ms
94,336 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 1,071 ms
295,784 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 TLE -
testcase_30 MLE -
testcase_31 AC 339 ms
122,288 KB
testcase_32 MLE -
testcase_33 AC 218 ms
92,692 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 AC 172 ms
89,092 KB
testcase_41 AC 166 ms
88,960 KB
testcase_42 AC 130 ms
88,568 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 = """10 9 3
# """
# 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 d + (n+1) <= D and k + 1 <= K:
                    for l in dp[n][d][k]:
                        dp[n+1][d+(n+1)][k+1].append(l + [n+1])
                for l in dp[n][d][k]:
                    dp[n+1][d][k].append(l)
    if dp[N][D][K]:
        L = dp[N][D][K]
        L.sort()
        print(*L[0][1:])
    else:
        print(-1)


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