結果

問題 No.115 遠足のおやつ
ユーザー nbisconbisco
提出日時 2017-01-21 15:09:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 624 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,376 KB
最終ジャッジ日時 2024-12-23 04:21:10
合計ジャッジ時間 102,099 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
15,872 KB
testcase_01 AC 30 ms
20,992 KB
testcase_02 AC 48 ms
21,376 KB
testcase_03 AC 35 ms
21,248 KB
testcase_04 TLE -
testcase_05 AC 32 ms
21,120 KB
testcase_06 AC 33 ms
21,248 KB
testcase_07 AC 34 ms
21,248 KB
testcase_08 AC 32 ms
21,248 KB
testcase_09 AC 30 ms
21,248 KB
testcase_10 AC 34 ms
21,376 KB
testcase_11 AC 31 ms
20,992 KB
testcase_12 AC 30 ms
16,000 KB
testcase_13 AC 32 ms
21,120 KB
testcase_14 AC 236 ms
21,248 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 51 ms
10,752 KB
testcase_20 AC 67 ms
10,496 KB
testcase_21 AC 34 ms
10,624 KB
testcase_22 TLE -
testcase_23 AC 44 ms
10,624 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 594 ms
10,624 KB
testcase_27 TLE -
testcase_28 AC 2,300 ms
10,624 KB
testcase_29 AC 908 ms
10,496 KB
testcase_30 TLE -
testcase_31 AC 61 ms
10,624 KB
testcase_32 TLE -
testcase_33 AC 35 ms
10,752 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 33 ms
10,752 KB
testcase_41 AC 32 ms
10,624 KB
testcase_42 AC 34 ms
21,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D, K = map(int, input().split(" "))

def solver(n, d, k, ans):
    global N
    if k == 0:
        if d == 0:
            return ans
        else:
            return False
    tmp = []
    for i in range(n+1, N+1):
        if d >= i:
            _tmp = solver(i,d-i,k-1,ans+[i])
            if _tmp:
                tmp.append(_tmp)
    if tmp == []:
        return False
    else:
        sorted(tmp)
        return tmp[0]

ans = []
for i in range(1, N+1):
    tmp = solver(i, D-i, K-1, [i])
    if tmp:
        ans.append(tmp)

if len(ans) == 0:
    print(-1)
else:
    sorted(ans)
    print(" ".join(map(str, ans[0])))
0