結果

問題 No.732 3PrimeCounting
ユーザー annin256annin256
提出日時 2018-09-07 22:37:55
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 2,085 ms / 3,000 ms
コード長 660 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 30,336 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-11-29 16:13:19
合計ジャッジ時間 41,045 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
5,504 KB
testcase_01 AC 6 ms
5,504 KB
testcase_02 AC 6 ms
5,504 KB
testcase_03 AC 7 ms
5,504 KB
testcase_04 AC 6 ms
5,504 KB
testcase_05 AC 7 ms
5,504 KB
testcase_06 AC 6 ms
5,504 KB
testcase_07 AC 7 ms
5,504 KB
testcase_08 AC 8 ms
5,504 KB
testcase_09 AC 7 ms
5,504 KB
testcase_10 AC 7 ms
5,504 KB
testcase_11 AC 7 ms
5,504 KB
testcase_12 AC 8 ms
5,504 KB
testcase_13 AC 7 ms
5,504 KB
testcase_14 AC 8 ms
5,504 KB
testcase_15 AC 6 ms
5,504 KB
testcase_16 AC 8 ms
5,504 KB
testcase_17 AC 6 ms
5,504 KB
testcase_18 AC 7 ms
5,504 KB
testcase_19 AC 7 ms
5,504 KB
testcase_20 AC 29 ms
5,504 KB
testcase_21 AC 83 ms
5,504 KB
testcase_22 AC 81 ms
5,504 KB
testcase_23 AC 15 ms
5,376 KB
testcase_24 AC 14 ms
5,504 KB
testcase_25 AC 137 ms
5,632 KB
testcase_26 AC 103 ms
5,504 KB
testcase_27 AC 37 ms
5,504 KB
testcase_28 AC 37 ms
5,504 KB
testcase_29 AC 64 ms
5,504 KB
testcase_30 AC 69 ms
5,504 KB
testcase_31 AC 84 ms
5,504 KB
testcase_32 AC 116 ms
5,632 KB
testcase_33 AC 122 ms
5,632 KB
testcase_34 AC 119 ms
5,632 KB
testcase_35 AC 100 ms
5,504 KB
testcase_36 AC 97 ms
5,504 KB
testcase_37 AC 23 ms
5,504 KB
testcase_38 AC 23 ms
5,504 KB
testcase_39 AC 95 ms
5,504 KB
testcase_40 AC 91 ms
5,504 KB
testcase_41 AC 87 ms
5,504 KB
testcase_42 AC 89 ms
5,504 KB
testcase_43 AC 75 ms
5,504 KB
testcase_44 AC 74 ms
5,504 KB
testcase_45 AC 45 ms
5,504 KB
testcase_46 AC 44 ms
5,504 KB
testcase_47 AC 55 ms
5,504 KB
testcase_48 AC 151 ms
5,632 KB
testcase_49 AC 146 ms
5,632 KB
testcase_50 AC 83 ms
5,504 KB
testcase_51 AC 83 ms
5,504 KB
testcase_52 AC 41 ms
5,504 KB
testcase_53 AC 273 ms
5,760 KB
testcase_54 AC 1,230 ms
6,784 KB
testcase_55 AC 1,215 ms
6,784 KB
testcase_56 AC 1,189 ms
6,784 KB
testcase_57 AC 509 ms
6,016 KB
testcase_58 AC 502 ms
6,016 KB
testcase_59 AC 289 ms
5,760 KB
testcase_60 AC 617 ms
6,144 KB
testcase_61 AC 630 ms
6,144 KB
testcase_62 AC 1,408 ms
7,040 KB
testcase_63 AC 876 ms
6,400 KB
testcase_64 AC 733 ms
6,016 KB
testcase_65 AC 714 ms
6,272 KB
testcase_66 AC 13 ms
5,504 KB
testcase_67 AC 13 ms
5,504 KB
testcase_68 AC 1,275 ms
6,912 KB
testcase_69 AC 1,288 ms
6,912 KB
testcase_70 AC 1,217 ms
6,784 KB
testcase_71 AC 1,194 ms
6,784 KB
testcase_72 AC 830 ms
6,400 KB
testcase_73 AC 1,817 ms
7,424 KB
testcase_74 AC 1,775 ms
7,424 KB
testcase_75 AC 135 ms
5,632 KB
testcase_76 AC 1,268 ms
6,912 KB
testcase_77 AC 514 ms
6,016 KB
testcase_78 AC 1,567 ms
7,168 KB
testcase_79 AC 1,294 ms
6,912 KB
testcase_80 AC 1,431 ms
7,040 KB
testcase_81 AC 1,207 ms
6,784 KB
testcase_82 AC 37 ms
5,504 KB
testcase_83 AC 508 ms
5,888 KB
testcase_84 AC 531 ms
6,016 KB
testcase_85 AC 1,094 ms
6,656 KB
testcase_86 AC 1,472 ms
7,168 KB
testcase_87 AC 2,058 ms
7,808 KB
testcase_88 AC 2,085 ms
7,808 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