結果

問題 No.1238 選抜クラス
ユーザー ygd.ygd.
提出日時 2021-07-02 00:39:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 758 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,840 KB
最終ジャッジ日時 2024-06-28 13:22:11
合計ジャッジ時間 4,290 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 46 ms
57,344 KB
testcase_02 AC 47 ms
57,984 KB
testcase_03 AC 42 ms
52,224 KB
testcase_04 AC 42 ms
51,712 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 42 ms
51,840 KB
testcase_07 AC 47 ms
57,984 KB
testcase_08 AC 47 ms
57,728 KB
testcase_09 AC 50 ms
59,008 KB
testcase_10 AC 48 ms
57,984 KB
testcase_11 AC 49 ms
58,368 KB
testcase_12 AC 49 ms
58,368 KB
testcase_13 AC 49 ms
58,624 KB
testcase_14 AC 47 ms
57,600 KB
testcase_15 AC 48 ms
58,240 KB
testcase_16 AC 49 ms
58,624 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 119 ms
91,392 KB
testcase_20 WA -
testcase_21 AC 113 ms
90,112 KB
testcase_22 WA -
testcase_23 AC 123 ms
91,008 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 124 ms
91,648 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 48 ms
60,380 KB
testcase_31 WA -
testcase_32 AC 81 ms
75,776 KB
testcase_33 AC 46 ms
57,344 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 49 ms
59,520 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N,K = map(int,input().split())
    A = list(map(int,input().split()))
    A = [a - K for a in A] #平均を引く
    #print(A)
    #合計点の範囲は-100点~100点×人数
    MAX = 210*N
    dp = [0]*MAX
    base = 105*N
    #dp[base-K] = 1 #0点誰も選ばないとき。K==0の時は最後引かないとだめ。
    #dp[i] = i + base点となる場合の数
    for i in range(N):
        p = [0]*MAX
        dp,p = p,dp
        #i番目の人のみ選ばれる場合
        dp[A[i]+base] += 1
        for j in range(MAX):
            dp[j] += p[j]
            if 0 <= j+A[i] < MAX:
                dp[j+A[i]] += p[j]
        #print(dp)
    #print(dp)
    ans = sum(dp[base:])
    print(ans)

if __name__ == '__main__':
    main()
0