結果

問題 No.1825 Except One
ユーザー titan23titan23
提出日時 2022-06-14 22:20:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 783 ms / 3,000 ms
コード長 491 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 225,024 KB
最終ジャッジ日時 2024-10-03 01:19:19
合計ジャッジ時間 11,467 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
78,472 KB
testcase_01 AC 79 ms
78,004 KB
testcase_02 AC 86 ms
78,592 KB
testcase_03 AC 783 ms
224,440 KB
testcase_04 AC 406 ms
149,368 KB
testcase_05 AC 218 ms
106,008 KB
testcase_06 AC 100 ms
83,456 KB
testcase_07 AC 734 ms
213,676 KB
testcase_08 AC 719 ms
214,016 KB
testcase_09 AC 100 ms
82,944 KB
testcase_10 AC 555 ms
181,460 KB
testcase_11 AC 270 ms
118,220 KB
testcase_12 AC 417 ms
151,852 KB
testcase_13 AC 306 ms
125,056 KB
testcase_14 AC 73 ms
77,824 KB
testcase_15 AC 92 ms
81,920 KB
testcase_16 AC 93 ms
81,192 KB
testcase_17 AC 82 ms
78,208 KB
testcase_18 AC 73 ms
77,952 KB
testcase_19 AC 88 ms
78,592 KB
testcase_20 AC 84 ms
78,192 KB
testcase_21 AC 80 ms
78,144 KB
testcase_22 AC 82 ms
78,448 KB
testcase_23 AC 80 ms
78,328 KB
testcase_24 AC 272 ms
117,248 KB
testcase_25 AC 312 ms
125,440 KB
testcase_26 AC 124 ms
88,448 KB
testcase_27 AC 658 ms
201,800 KB
testcase_28 AC 778 ms
224,512 KB
testcase_29 AC 117 ms
84,224 KB
testcase_30 AC 129 ms
87,928 KB
testcase_31 AC 200 ms
103,680 KB
testcase_32 AC 737 ms
221,576 KB
testcase_33 AC 111 ms
83,532 KB
testcase_34 AC 769 ms
225,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

##################

n = int(input())
A = list(map(int, input().split()))
A.sort()

dp = [[[0 for _ in range(n+1)] for _ in range(6000)] for _ in range(n+1)]
dp[0][0][0] = 1
ans = 0
for i in range(n):
  for j in range(5001):
    for k in range(n):
      dp[i+1][j][k] += dp[i][j][k]
      dp[i+1][j+A[i]][k+1] += dp[i][j][k]
      if k >= 1:
        if (j + A[i])%k == 0 and k*A[i] <= j+A[i]:
          ans += dp[i][j][k]

print(ans)
0