結果

問題 No.115 遠足のおやつ
ユーザー vwxyzvwxyz
提出日時 2022-10-18 11:06:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 464 ms / 5,000 ms
コード長 411 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,332 KB
最終ジャッジ日時 2024-06-28 20:04:44
合計ジャッジ時間 22,045 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 442 ms
44,264 KB
testcase_01 AC 440 ms
43,572 KB
testcase_02 AC 450 ms
43,820 KB
testcase_03 AC 437 ms
43,836 KB
testcase_04 AC 442 ms
43,448 KB
testcase_05 AC 449 ms
44,156 KB
testcase_06 AC 446 ms
43,752 KB
testcase_07 AC 460 ms
43,956 KB
testcase_08 AC 455 ms
43,828 KB
testcase_09 AC 445 ms
43,576 KB
testcase_10 AC 445 ms
43,820 KB
testcase_11 AC 443 ms
43,960 KB
testcase_12 AC 449 ms
43,704 KB
testcase_13 AC 444 ms
44,012 KB
testcase_14 AC 441 ms
43,452 KB
testcase_15 AC 445 ms
43,964 KB
testcase_16 AC 443 ms
43,832 KB
testcase_17 AC 438 ms
43,704 KB
testcase_18 AC 461 ms
44,012 KB
testcase_19 AC 452 ms
43,568 KB
testcase_20 AC 446 ms
43,448 KB
testcase_21 AC 443 ms
44,080 KB
testcase_22 AC 443 ms
43,572 KB
testcase_23 AC 445 ms
43,824 KB
testcase_24 AC 450 ms
43,832 KB
testcase_25 AC 441 ms
43,836 KB
testcase_26 AC 450 ms
43,448 KB
testcase_27 AC 452 ms
43,960 KB
testcase_28 AC 449 ms
43,452 KB
testcase_29 AC 450 ms
43,576 KB
testcase_30 AC 443 ms
43,956 KB
testcase_31 AC 442 ms
44,088 KB
testcase_32 AC 440 ms
43,832 KB
testcase_33 AC 446 ms
43,956 KB
testcase_34 AC 445 ms
44,088 KB
testcase_35 AC 443 ms
43,584 KB
testcase_36 AC 457 ms
43,556 KB
testcase_37 AC 439 ms
43,440 KB
testcase_38 AC 444 ms
43,824 KB
testcase_39 AC 464 ms
43,828 KB
testcase_40 AC 452 ms
44,264 KB
testcase_41 AC 444 ms
43,876 KB
testcase_42 AC 459 ms
44,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N,D,K=map(int,readline().split())
N=min(N,D)
import numpy as np
dp=np.full((N+1,K+1,D+1),False,dtype=bool)
dp[0][0][0]=True
for n in range(N,0,-1):
    dp[N-n+1]|=dp[N-n]
    dp[N-n+1,1:,n:]|=dp[N-n,:-1,:-n]
ans_lst=[]
for n in range(1,N+1):
    if K and D>=n and dp[N-n,K-1,D-n]:
        ans_lst.append(n)
        D-=n
        K-=1
if K:
    ans_lst=[-1]
print(*ans_lst)
0