結果

問題 No.115 遠足のおやつ
ユーザー tcltktcltk
提出日時 2021-01-16 16:43:39
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,095 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 849,796 KB
最終ジャッジ日時 2024-11-27 20:19:31
合計ジャッジ時間 67,800 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
88,704 KB
testcase_01 AC 158 ms
89,600 KB
testcase_02 AC 173 ms
94,812 KB
testcase_03 AC 153 ms
89,400 KB
testcase_04 MLE -
testcase_05 AC 185 ms
88,960 KB
testcase_06 AC 141 ms
88,760 KB
testcase_07 AC 179 ms
89,344 KB
testcase_08 AC 173 ms
89,728 KB
testcase_09 AC 163 ms
89,472 KB
testcase_10 AC 164 ms
89,964 KB
testcase_11 AC 151 ms
89,728 KB
testcase_12 AC 157 ms
89,740 KB
testcase_13 AC 141 ms
88,960 KB
testcase_14 AC 371 ms
173,824 KB
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 181 ms
89,344 KB
testcase_19 AC 180 ms
90,112 KB
testcase_20 AC 187 ms
96,768 KB
testcase_21 AC 156 ms
89,472 KB
testcase_22 MLE -
testcase_23 AC 247 ms
92,692 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 958 ms
268,288 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 AC 362 ms
105,856 KB
testcase_32 MLE -
testcase_33 AC 237 ms
89,984 KB
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 AC 180 ms
88,960 KB
testcase_41 AC 139 ms
88,704 KB
testcase_42 AC 139 ms
88,832 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)]
    dp[0][0] = [[0]]
    for n in range(0, N):
        dp1 = [[list() for _ in range(K+1)] for _ in range(D+1)]
        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[d][k]:
                        dp1[d+(n+1)][k+1].append(l + [n+1])
                for l in dp[d][k]:
                    dp1[d][k].append(l)
        dp = dp1
    if dp[D][K]:
        L = dp[D][K]
        L.sort()
        print(*L[0][1:])
    else:
        print(-1)


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