zoukankan      html  css  js  c++  java
  • 校赛热身赛 Problem D. Unsolved Mystery

    Problem D. Unsolved Mystery
    The world famous mathematician Wang Hao published a paper recently in the journal “Nonsense”, there
    is such a function in the paper:
    F(x) = ⌊(√
    (x + 3)√
    (x + 2)x + 1)

    (p
    x + 3
    p
    x + 1)⌋ (x 1)
    Now, Jelly has known L, R, and P, and he wants to know the results of the following formula:
    (∏
    R
    i=L
    F(i)
    )
    mod P
    But Jelly is too busy, so he wants to ask you for help.
    Input
    The first line is an integer T, indicating the number of cases.
    Each test case contains three integers L, R and P.
    Output
    For each test case, output one line containing “Case #x: y”, where x is the test case number (starting
    from 1) and y is the answer.
    Limits
    1 T 20.
    1 L R 1018
    .
    1 P 105
    .
    Example
    standard input standard output
    2
    1 3 2
    3 5 9
    Case #1: 0
    Case #2: 3
    Note
    For the first case, F(1) F(2) F(3) = 120, 120 mod 2 = 0.
    For the second case, F(3) F(4) F(5) = 336, 336 mod 9 = 3

    1. 化简之后F(i)=i+3;因为L,R很大,但是P很小,只要R-L+1>=P  
    2. 则L到R中一定存在P的倍数,因此输出0便可,否则循环求解。  
    #include <iostream>
    #include <cstring>
    #include<string>
    #include <algorithm>
    #include <queue>
    using namespace std;
    int main()
    {
        int t;
        cin>>t;
        for(int i=1;i<=y;i++)
        {
            cout<<"Case #"<<i<<": ";
            long long r,l,p;
            cin>>l>>r>>p;
            long long s;
            if(p>=l+3&&p<=r+3) cout<<0<<endl;
            else
            {
                l+=3;
                r+=3;
                l=l%p;
                long long c=r-l+1;
                if(c+l-1>=p) cout<<0<<endl;
                else
                {
                    for(long long i=l;i<=c+l-1;i++)
                    {
                        s=(s*i)%p;
                    }
                }
            }
            cout<<s<<endl;
        }
        return 0;
    }
  • 相关阅读:
    实战-rsync+inotify打造文件实时备份
    实战-Mysql5.6.36脚本编译安装及初始化
    实战-CentOS6.8配置nfs服务
    CentOS7操作系统初始化
    docker搭建 SonarQube代码质量管理平台
    ubuntu 教程
    前端图表库
    WebSSH2安装过程可实现WEB可视化管理SSH工具
    devops 自动化平台网址
    AIops 智能运维平台
  • 原文地址:https://www.cnblogs.com/caiyishuai/p/13271116.html
Copyright © 2011-2022 走看看