結果

問題 No.843 Triple Primes
ユーザー toyamatoyama
提出日時 2019-06-28 21:38:12
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 1,027 ms / 2,000 ms
コード長 1,050 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 28,800 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-19 13:52:58
合計ジャッジ時間 20,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1,027 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 697 ms
5,376 KB
testcase_08 AC 801 ms
5,376 KB
testcase_09 AC 998 ms
5,376 KB
testcase_10 AC 727 ms
5,376 KB
testcase_11 AC 870 ms
5,376 KB
testcase_12 AC 962 ms
5,376 KB
testcase_13 AC 913 ms
5,376 KB
testcase_14 AC 914 ms
5,376 KB
testcase_15 AC 704 ms
5,376 KB
testcase_16 AC 718 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 107 ms
5,376 KB
testcase_21 AC 38 ms
5,376 KB
testcase_22 AC 361 ms
5,376 KB
testcase_23 AC 381 ms
5,376 KB
testcase_24 AC 116 ms
5,376 KB
testcase_25 AC 74 ms
5,376 KB
testcase_26 AC 993 ms
5,376 KB
testcase_27 AC 8 ms
5,376 KB
testcase_28 AC 930 ms
5,376 KB
testcase_29 AC 127 ms
5,376 KB
testcase_30 AC 973 ms
5,376 KB
testcase_31 AC 16 ms
5,376 KB
testcase_32 AC 6 ms
5,376 KB
testcase_33 AC 154 ms
5,376 KB
testcase_34 AC 313 ms
5,376 KB
testcase_35 AC 998 ms
5,376 KB
testcase_36 AC 60 ms
5,376 KB
testcase_37 AC 639 ms
5,376 KB
testcase_38 AC 475 ms
5,376 KB
testcase_39 AC 940 ms
5,376 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 758 ms
5,376 KB
testcase_43 AC 863 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdbool.h>
typedef long long ll;

bool is_prime[500005];
ll list_prime[500005];

ll calc_prime(ll n);

int main()
{
    ll n;
    ll m;
    ll ans = 0;
    
    scanf("%lld", &n);

    m = calc_prime(n);

    for (ll i = 0; i < m; i++) {
        for (ll j = i; j < m; j++) {
            ll p = list_prime[i];
            ll r = list_prime[j];

            ll q = r * r - p;

            if (q >= 0 && q <= n && is_prime[q]) {
                if (i == j) {
                    ans++;
                }
                else {
                    ans += 2;
                }
            }
        }
    }

    printf("%lld\n", ans);

    return 0;
}

ll calc_prime(ll n)
{
    ll cnt = 0;
    
    for (ll i = 2; i <= n; i++) {
        is_prime[i] = true;
    }

    for (ll i = 2; i <= n; i++) {
        if (is_prime[i]) {
            list_prime[cnt] = i;
            cnt++;
            
            for (ll j = i + i; j <= n; j += i) {
                is_prime[j] = false;
            }
        }
    }

    return cnt;
}
0