1 条题解

  • 0
    @ 2022-10-9 10:42:59
    #include <bits/stdc++.h>
    using namespace std;
    bool isP(int x)
    {
        if (x < 2)
            return 0;
        for (int i = 2; i * i <= x; i++)
            if (x % i == 0)
                return false;
        return true;
    }
    int main()
    {
        int n;
        cin >> n;
        for (int i = 1; i <= n && i + 2 <= n; i++)
            if (isP(i) && isP(i + 2))
                cout << i << " " << i + 2 << "\n";
        return 0;
    }
    
    • 1

    信息

    ID
    629
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    (无)
    递交数
    109
    已通过
    59
    上传者