結果

問題 No.732 3PrimeCounting
ユーザー annin256annin256
提出日時 2018-09-07 22:37:44
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 697 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 30,464 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-05-07 03:44:32
合計ジャッジ時間 47,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
13,760 KB
testcase_01 AC 6 ms
6,944 KB
testcase_02 AC 8 ms
6,940 KB
testcase_03 AC 7 ms
6,940 KB
testcase_04 AC 6 ms
6,940 KB
testcase_05 AC 7 ms
6,940 KB
testcase_06 AC 7 ms
6,940 KB
testcase_07 AC 7 ms
6,940 KB
testcase_08 AC 8 ms
6,940 KB
testcase_09 AC 8 ms
6,940 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 8 ms
6,944 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 8 ms
6,944 KB
testcase_15 AC 8 ms
6,944 KB
testcase_16 AC 8 ms
6,944 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 9 ms
6,944 KB
testcase_20 AC 48 ms
6,944 KB
testcase_21 AC 149 ms
6,944 KB
testcase_22 AC 148 ms
6,944 KB
testcase_23 AC 22 ms
6,940 KB
testcase_24 AC 22 ms
6,944 KB
testcase_25 AC 257 ms
6,940 KB
testcase_26 AC 196 ms
6,940 KB
testcase_27 AC 66 ms
6,940 KB
testcase_28 AC 66 ms
6,940 KB
testcase_29 AC 122 ms
6,940 KB
testcase_30 AC 122 ms
6,940 KB
testcase_31 AC 159 ms
6,944 KB
testcase_32 AC 216 ms
6,940 KB
testcase_33 AC 218 ms
6,940 KB
testcase_34 AC 219 ms
6,940 KB
testcase_35 AC 174 ms
6,940 KB
testcase_36 AC 175 ms
6,940 KB
testcase_37 AC 36 ms
6,940 KB
testcase_38 AC 35 ms
6,940 KB
testcase_39 AC 182 ms
6,944 KB
testcase_40 AC 162 ms
6,944 KB
testcase_41 AC 166 ms
6,940 KB
testcase_42 AC 165 ms
6,940 KB
testcase_43 AC 135 ms
6,940 KB
testcase_44 AC 135 ms
6,940 KB
testcase_45 AC 79 ms
6,940 KB
testcase_46 AC 79 ms
6,944 KB
testcase_47 AC 97 ms
6,944 KB
testcase_48 AC 277 ms
6,944 KB
testcase_49 AC 282 ms
6,944 KB
testcase_50 AC 151 ms
6,944 KB
testcase_51 AC 153 ms
6,944 KB
testcase_52 AC 73 ms
6,944 KB
testcase_53 AC 507 ms
6,944 KB
testcase_54 AC 2,504 ms
6,944 KB
testcase_55 AC 2,501 ms
6,940 KB
testcase_56 AC 2,489 ms
6,944 KB
testcase_57 AC 976 ms
6,940 KB
testcase_58 AC 976 ms
6,940 KB
testcase_59 AC 546 ms
6,944 KB
testcase_60 AC 1,233 ms
6,944 KB
testcase_61 AC 1,238 ms
6,940 KB
testcase_62 AC 2,932 ms
6,944 KB
testcase_63 AC 1,788 ms
6,940 KB
testcase_64 AC 1,438 ms
6,940 KB
testcase_65 AC 1,429 ms
6,944 KB
testcase_66 AC 19 ms
6,944 KB
testcase_67 AC 19 ms
6,940 KB
testcase_68 AC 2,681 ms
6,944 KB
testcase_69 AC 2,697 ms
6,944 KB
testcase_70 AC 2,507 ms
6,944 KB
testcase_71 AC 2,509 ms
6,940 KB
testcase_72 AC 1,711 ms
6,948 KB
testcase_73 TLE -
testcase_74 TLE -
testcase_75 AC 250 ms
6,944 KB
testcase_76 AC 2,650 ms
6,940 KB
testcase_77 AC 1,025 ms
6,944 KB
testcase_78 TLE -
testcase_79 AC 2,924 ms
6,948 KB
testcase_80 TLE -
testcase_81 AC 2,654 ms
6,940 KB
testcase_82 AC 59 ms
6,944 KB
testcase_83 AC 1,002 ms
6,940 KB
testcase_84 AC 1,073 ms
6,944 KB
testcase_85 AC 2,302 ms
6,944 KB
testcase_86 TLE -
testcase_87 TLE -
testcase_88 -- -
権限があれば一括ダウンロードができます

ソースコード

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++) {
        if (dp[i][j] == 0) continue;
        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