結果

問題 No.1238 選抜クラス
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-09-25 22:31:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 537 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 312,576 KB
最終ジャッジ日時 2024-06-28 06:58:33
合計ジャッジ時間 21,861 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 56 ms
62,336 KB
testcase_03 WA -
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
51,712 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 55 ms
62,080 KB
testcase_08 AC 61 ms
63,872 KB
testcase_09 AC 61 ms
64,896 KB
testcase_10 AC 60 ms
64,256 KB
testcase_11 AC 60 ms
64,000 KB
testcase_12 AC 58 ms
63,360 KB
testcase_13 AC 59 ms
63,232 KB
testcase_14 AC 58 ms
63,104 KB
testcase_15 AC 64 ms
64,896 KB
testcase_16 AC 61 ms
64,640 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,221 ms
301,824 KB
testcase_20 WA -
testcase_21 AC 1,038 ms
288,028 KB
testcase_22 WA -
testcase_23 AC 54 ms
66,432 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 AC 1,366 ms
295,528 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 97 ms
76,544 KB
testcase_31 WA -
testcase_32 AC 506 ms
125,056 KB
testcase_33 AC 54 ms
61,824 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 74 ms
69,248 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))
a = sorted(a)

s = sum(a)
d = [[0 for j in range(s+1)] for i in range(n+1)]
d[0][0] = 1

for x in a:
    d_next = [[0 for j in range(s+1)] for i in range(n+1)]
    d[0][0] = 1
    for i in range(n):
        for j in range(s):
            d_next[i][j] += d[i][j]
            if j+x <= s:
                d_next[i+1][j+x] += d[i][j]
    d = d_next

        
ans = 0
for i in range(s+1):
    for j in range(1,n+1):
        if i >= j*k:
            ans += d[j][i]
print(ans)
0