結果
問題 | No.1238 選抜クラス |
ユーザー | komkompi |
提出日時 | 2020-10-17 22:11:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 356 bytes |
コンパイル時間 | 540 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,680 KB |
最終ジャッジ日時 | 2024-07-21 03:11:35 |
合計ジャッジ時間 | 9,383 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
16,384 KB |
testcase_01 | AC | 65 ms
10,880 KB |
testcase_02 | AC | 340 ms
11,392 KB |
testcase_03 | AC | 35 ms
10,752 KB |
testcase_04 | AC | 36 ms
10,880 KB |
testcase_05 | AC | 35 ms
10,752 KB |
testcase_06 | AC | 36 ms
10,880 KB |
testcase_07 | AC | 165 ms
11,264 KB |
testcase_08 | AC | 325 ms
11,392 KB |
testcase_09 | AC | 722 ms
11,776 KB |
testcase_10 | AC | 206 ms
11,264 KB |
testcase_11 | AC | 650 ms
11,648 KB |
testcase_12 | AC | 390 ms
11,392 KB |
testcase_13 | AC | 382 ms
11,648 KB |
testcase_14 | AC | 324 ms
11,520 KB |
testcase_15 | AC | 761 ms
11,648 KB |
testcase_16 | AC | 638 ms
11,904 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
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 | -- | - |
ソースコード
# coding: utf-8 # Your code here! N,K=map(int,input().split()) A=list(map(int,input().split())) ans=0 dp=[[0]*10001 for i in range(N+1)] dp[0][0]=1 for a in A: for n in range(N)[::-1]: for i in range(10001)[::-1]: if a+i<=10000: dp[n+1][a+i]+=dp[n][i] for n in range(1,N+1): ans+=sum(dp[n][n*K:]) print(ans)