結果

問題 No.115 遠足のおやつ
ユーザー roiti46roiti46
提出日時 2015-02-10 00:51:39
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 350 bytes
コンパイル時間 554 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 123,448 KB
最終ジャッジ日時 2024-06-23 16:54:10
合計ジャッジ時間 15,111 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 113 ms
77,712 KB
testcase_03 RE -
testcase_04 AC 3,821 ms
121,864 KB
testcase_05 AC 73 ms
75,292 KB
testcase_06 RE -
testcase_07 AC 73 ms
75,264 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 AC 121 ms
78,468 KB
testcase_15 AC 1,532 ms
91,676 KB
testcase_16 AC 445 ms
81,672 KB
testcase_17 AC 78 ms
77,188 KB
testcase_18 RE -
testcase_19 AC 69 ms
75,304 KB
testcase_20 AC 71 ms
75,204 KB
testcase_21 AC 83 ms
77,732 KB
testcase_22 TLE -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000)

def dfs(array,i,d,k):
    if d == D and k == K: return array
    if i > N or d > D or d+i > D or k > K: return False
    res = dfs(array+[i],i+1,d+i,k+1)
    if res: return res
    res = dfs(array,i+1,d,k)
    if res: return res
    
N,D,K = map(int,raw_input().split())
print " ".join(map(str,dfs([],1,0,0)))
0