結果

問題 No.616 へんなソート
ユーザー zimphazimpha
提出日時 2017-12-16 19:29:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 32,384 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-05-08 16:32:32
合計ジャッジ時間 3,124 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
23,680 KB
testcase_01 AC 59 ms
23,680 KB
testcase_02 AC 61 ms
23,680 KB
testcase_03 AC 60 ms
23,552 KB
testcase_04 AC 59 ms
23,680 KB
testcase_05 AC 60 ms
23,680 KB
testcase_06 AC 60 ms
23,552 KB
testcase_07 AC 62 ms
23,552 KB
testcase_08 AC 58 ms
23,552 KB
testcase_09 AC 59 ms
23,552 KB
testcase_10 AC 60 ms
23,552 KB
testcase_11 AC 58 ms
23,552 KB
testcase_12 AC 59 ms
23,552 KB
testcase_13 AC 60 ms
23,552 KB
testcase_14 AC 59 ms
23,680 KB
testcase_15 AC 59 ms
23,680 KB
testcase_16 AC 57 ms
23,680 KB
testcase_17 AC 60 ms
23,680 KB
testcase_18 AC 58 ms
23,552 KB
testcase_19 AC 59 ms
23,680 KB
testcase_20 AC 60 ms
23,552 KB
testcase_21 AC 59 ms
23,552 KB
testcase_22 AC 59 ms
23,552 KB
testcase_23 AC 59 ms
23,680 KB
testcase_24 AC 59 ms
23,552 KB
testcase_25 AC 58 ms
23,552 KB
testcase_26 AC 59 ms
23,680 KB
testcase_27 AC 59 ms
23,680 KB
testcase_28 AC 59 ms
23,552 KB
testcase_29 AC 60 ms
23,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>

constexpr int N = 300 + 10, K = N * (N - 1) / 2;
constexpr int mod = 1e9 + 7;

int dp[N][K];

int main() {
  dp[0][0] = 1;
  for (int i = 1; i < N; ++i) {
    dp[i][0] = 1;
    for (int j = 1; j <= i * (i - 1) / 2; ++j) {
      dp[i][j] = (dp[i][j - 1] + dp[i - 1][j]) % mod;
      if (j >= i) dp[i][j] = (dp[i][j] - dp[i - 1][j - i] + mod) % mod;
    }
  }
  int n, k;
  scanf("%d%d", &n, &k);
  int ret = 0;
  for (int i = 0; i <= k; ++i) {
    ret = (ret + dp[n][i]) % mod;
  }
  printf("%d\n", ret);
  return 0;
}
0