結果
問題 | No.1318 ABCD quadruplets |
ユーザー | googol_S0 |
提出日時 | 2020-12-15 00:29:39 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 407 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 81,852 KB |
実行使用メモリ | 850,048 KB |
最終ジャッジ日時 | 2024-09-20 01:04:28 |
合計ジャッジ時間 | 3,550 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,284 KB |
testcase_01 | AC | 36 ms
53,248 KB |
testcase_02 | AC | 39 ms
52,520 KB |
testcase_03 | AC | 37 ms
51,940 KB |
testcase_04 | AC | 34 ms
52,468 KB |
testcase_05 | AC | 35 ms
52,256 KB |
testcase_06 | AC | 36 ms
52,896 KB |
testcase_07 | AC | 34 ms
52,536 KB |
testcase_08 | AC | 34 ms
52,744 KB |
testcase_09 | AC | 40 ms
58,504 KB |
testcase_10 | AC | 41 ms
59,052 KB |
testcase_11 | AC | 42 ms
59,496 KB |
testcase_12 | AC | 35 ms
53,672 KB |
testcase_13 | AC | 459 ms
236,068 KB |
testcase_14 | MLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
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 | -- | - |
ソースコード
N,M=map(int,input().split()) DP=[[[0]*(M*j+1) for i in range(N+1)] for j in range(5)] DP[0][0][0]=1 for i in range(M+1): DP[1][i*i][i]=1 for i in range(1,4): for j in range(N+1): for k in range(M*i+1): if DP[i][j][k]==0: continue l=0 while l*(l+k)+j<=N and l<=M: DP[i+1][l*(l+k)+j][k+l]+=DP[i][j][k] l+=1 print(*[sum(DP[4][i]) for i in range(N+1)],sep='\n')