結果

問題 No.115 遠足のおやつ
ユーザー tcltktcltk
提出日時 2021-01-16 16:58:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 1,095 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 1,642,940 KB
最終ジャッジ日時 2024-11-27 20:48:10
合計ジャッジ時間 115,965 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 40 ms
17,408 KB
testcase_04 MLE -
testcase_05 AC 39 ms
16,896 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 80 ms
17,408 KB
testcase_10 MLE -
testcase_11 AC 42 ms
16,896 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 40 ms
17,024 KB
testcase_19 MLE -
testcase_20 AC 91 ms
18,304 KB
testcase_21 AC 47 ms
11,776 KB
testcase_22 TLE -
testcase_23 AC 182 ms
16,128 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,625 ms
100,096 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 295 ms
22,144 KB
testcase_32 TLE -
testcase_33 AC 60 ms
12,032 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 38 ms
11,648 KB
testcase_41 AC 39 ms
11,648 KB
testcase_42 AC 38 ms
11,776 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