結果

問題 No.732 3PrimeCounting
ユーザー annin256annin256
提出日時 2018-09-07 22:37:55
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2,269 ms / 3,000 ms
コード長 660 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 8,560 KB
最終ジャッジ日時 2024-05-07 03:40:44
合計ジャッジ時間 43,264 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
6,812 KB
testcase_01 AC 8 ms
6,944 KB
testcase_02 AC 8 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 8 ms
6,944 KB
testcase_05 AC 8 ms
6,944 KB
testcase_06 AC 10 ms
6,944 KB
testcase_07 AC 7 ms
6,944 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 8 ms
6,944 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 10 ms
6,940 KB
testcase_14 AC 9 ms
6,944 KB
testcase_15 AC 9 ms
7,020 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 9 ms
6,940 KB
testcase_18 AC 8 ms
6,940 KB
testcase_19 AC 8 ms
6,944 KB
testcase_20 AC 31 ms
6,944 KB
testcase_21 AC 90 ms
6,944 KB
testcase_22 AC 88 ms
6,944 KB
testcase_23 AC 17 ms
6,940 KB
testcase_24 AC 16 ms
6,944 KB
testcase_25 AC 153 ms
6,944 KB
testcase_26 AC 115 ms
6,940 KB
testcase_27 AC 42 ms
7,024 KB
testcase_28 AC 42 ms
6,944 KB
testcase_29 AC 73 ms
6,944 KB
testcase_30 AC 74 ms
6,940 KB
testcase_31 AC 101 ms
6,944 KB
testcase_32 AC 125 ms
6,940 KB
testcase_33 AC 129 ms
6,944 KB
testcase_34 AC 130 ms
6,944 KB
testcase_35 AC 102 ms
6,940 KB
testcase_36 AC 104 ms
6,940 KB
testcase_37 AC 24 ms
6,940 KB
testcase_38 AC 26 ms
6,944 KB
testcase_39 AC 107 ms
7,148 KB
testcase_40 AC 99 ms
6,944 KB
testcase_41 AC 99 ms
6,940 KB
testcase_42 AC 99 ms
6,940 KB
testcase_43 AC 82 ms
6,940 KB
testcase_44 AC 82 ms
6,940 KB
testcase_45 AC 48 ms
6,944 KB
testcase_46 AC 49 ms
6,944 KB
testcase_47 AC 61 ms
6,944 KB
testcase_48 AC 162 ms
6,940 KB
testcase_49 AC 162 ms
6,944 KB
testcase_50 AC 90 ms
6,940 KB
testcase_51 AC 91 ms
6,944 KB
testcase_52 AC 46 ms
6,944 KB
testcase_53 AC 291 ms
6,944 KB
testcase_54 AC 1,312 ms
7,792 KB
testcase_55 AC 1,316 ms
6,944 KB
testcase_56 AC 1,318 ms
7,148 KB
testcase_57 AC 549 ms
6,940 KB
testcase_58 AC 548 ms
7,024 KB
testcase_59 AC 313 ms
7,028 KB
testcase_60 AC 676 ms
6,940 KB
testcase_61 AC 691 ms
7,404 KB
testcase_62 AC 1,515 ms
7,668 KB
testcase_63 AC 957 ms
7,412 KB
testcase_64 AC 784 ms
6,940 KB
testcase_65 AC 785 ms
6,940 KB
testcase_66 AC 15 ms
6,944 KB
testcase_67 AC 15 ms
6,944 KB
testcase_68 AC 1,389 ms
7,020 KB
testcase_69 AC 1,390 ms
6,948 KB
testcase_70 AC 1,328 ms
7,916 KB
testcase_71 AC 1,326 ms
7,788 KB
testcase_72 AC 919 ms
6,940 KB
testcase_73 AC 1,924 ms
7,792 KB
testcase_74 AC 1,927 ms
8,176 KB
testcase_75 AC 147 ms
7,028 KB
testcase_76 AC 1,380 ms
7,664 KB
testcase_77 AC 574 ms
7,412 KB
testcase_78 AC 1,697 ms
7,408 KB
testcase_79 AC 1,418 ms
7,668 KB
testcase_80 AC 1,596 ms
8,048 KB
testcase_81 AC 1,336 ms
7,664 KB
testcase_82 AC 38 ms
6,940 KB
testcase_83 AC 556 ms
7,020 KB
testcase_84 AC 599 ms
7,020 KB
testcase_85 AC 1,224 ms
7,664 KB
testcase_86 AC 1,619 ms
7,280 KB
testcase_87 AC 2,269 ms
8,560 KB
testcase_88 AC 2,267 ms
8,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int pr[300001];
int prs[26000];
int ptr;
long long dp[4][300000];

int main(void) {
  int n;
  scanf("%d", &n);
  for (int i = 2; i <= 300000; i++) {
    if (!pr[i]) {
      prs[ptr++] = i;
      for (int j = i * 2; j <= 300000; j += i) {
        pr[j] = 1;
      }
    }
    pr[i] = !pr[i];
  }
  dp[0][0] = 1;
  for (int k = 0; prs[k] <= n; k++) {
    for (int i = 2; i >= 0; i--) {
      for (int j = 0; j <= 100000 * i; j++) {
        dp[i + 1][prs[k] + j] += dp[i][j];
      }
    }
  }
  long long ans = 0;
  for (int i = 0; i < 300000; i++) {
    if (pr[i]) {
      ans += dp[3][i];
    }
  }
  printf("%lld\n", ans);
  return 0;
}

0