結果

問題 No.2847 Birthday Attack
ユーザー yamadayamada
提出日時 2024-08-23 23:57:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,981 ms / 3,000 ms
コード長 3,276 bytes
コンパイル時間 3,263 ms
コンパイル使用メモリ 169,384 KB
実行使用メモリ 188,928 KB
最終ジャッジ日時 2024-08-23 23:57:50
合計ジャッジ時間 29,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 545 ms
45,568 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2,981 ms
188,928 KB
testcase_06 AC 1,331 ms
91,904 KB
testcase_07 AC 2,618 ms
169,216 KB
testcase_08 AC 580 ms
45,440 KB
testcase_09 AC 1,522 ms
104,192 KB
testcase_10 AC 1,053 ms
75,264 KB
testcase_11 AC 1,222 ms
88,704 KB
testcase_12 AC 2,464 ms
159,744 KB
testcase_13 AC 2,883 ms
187,264 KB
testcase_14 AC 1,827 ms
122,112 KB
testcase_15 AC 2,129 ms
143,744 KB
testcase_16 AC 1,535 ms
105,472 KB
testcase_17 AC 2,249 ms
151,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <cmath>
#include <iomanip>
#include <map>
#include <stack>
#include <vector>
#include <queue>
#include <deque>
#include <set>
#include <bitset>
#include <atcoder/all>
using namespace atcoder;
using namespace std;
#define rep(i,a,b) for(ll i=a;i<b;++i)
#define rrep(i,a,b) for(ll i=a;i>=b;--i)
#define fore(i, a) for(auto& i : a)
#define pi 3.141592653589793238
typedef long long ll;
typedef pair<ll,ll> pp;
typedef vector<ll> vl;
typedef vector<ulong> vu;
typedef vector<vl> vvl;
typedef vector<pp> vp;
typedef vector<vp> vvp;
typedef priority_queue<pp, vp, greater<pp> > pq;
vl kaijou;
void kaijou_set(ll m) {kaijou.push_back(1); rep(i, 1, 1000009)kaijou.push_back((kaijou[i-1] * i) % m); return;}
ll C(ll a, ll b, ll m) {if(a < b) return 0; return (kaijou[a] * pow_mod(kaijou[a-b] * kaijou[b], m-2, m)) % m;}
template <typename T, typename F>
T bisect(T ok, T bad, F pred) {while (bad - ok > 1) {T mid = ok + (bad - ok) / 2; (pred(mid) ? ok : bad) = mid;} return bad;}
bool chmin(ll &a, ll b) {if (a > b) {a = b;return true;} return false;}
bool chmax(ll &a, ll b) {if (a < b) {a = b;return true;} return false;}
void YESNO(bool b) { cout << (b ? "YES" : "NO") << endl; }
void YesNo(bool b) { cout << (b ? "Yes" : "No") << endl; }
ll gcd(ll x, ll y) {if(y == 0)return x; return gcd(y, x % y); }
ll RU(ll a, ll b) {return a / b + (a % b && (a ^ b) >= 0); }
ll mod=998244353; ll mof=1000000007;



int main() 
{
    ll x,y,m;
    cin>>x>>y>>m;
    if(x<y)swap(x,y);

    ll ans_yoko=0,ans_tate=0;
    //円の中心がy=1上にあって、横向きのものだけ
    ll r_lim=(x-1)/2;//ちっちゃい円の半径
    for(ll r=1;r<=r_lim;r++){
        ans_yoko+=x-r*2;
        ans_yoko%=m;
    }
    //cout<<ans_yoko<<endl;
    ans_yoko*=y*2;
    ans_yoko%=m;

    //円の中心がx=1上にあって、縦向きのものだけ
    r_lim=(y-1)/2;
    rep(r,1,r_lim+1){
        ans_tate+=y-r*2;
        ans_tate%=m;
    }
    ans_tate*=x*2;
    ans_tate%=m;


    ll ans_naname=0;
    map<pp,bool>visited;
    rep(M,2,max(x,y)/2+1){
        rep(N,1,M){
            ll a=2*M*N;
            ll b=M*M-N*N;
            if(a*2>=x)break;
            if(a<b)swap(a,b);
            if(visited.count(make_pair(a,b)))continue;
            if(gcd(a,b)>=2)continue;
            visited[make_pair(a,b)]=true;
            ll A=a,B=b;
            while(1){
                bool con=false;
                if(2*a<y&&2*b<x){
                    ans_naname+=(x-2*b)*(y-2*a)*4;
                    //cout<<(x-2*b)*(y-2*a)*4<<endl;
                    //cout<<m<<endl;
                    ans_naname%=m;
                    //cout<<a<<" "<<b<<" "<<ans_naname<<endl;
                    con=true;
                }
                if(2*b<y&&2*a<x){
                    ans_naname+=(x-2*a)*(y-2*b)*4;
                    //cout<<(x-2*a)*(y-2*b)*4<<endl;
                    //cout<<m<<endl;
                    ans_naname%=m;
                    //cout<<a<<" "<<b<<" "<<ans_naname<<endl;
                    con=true;
                }
                a+=A;b+=B;
                if(con==false)break;
            }
        }
    }
    cout<<(ans_yoko+ans_tate+ans_naname)%m<<endl;
    //cout<<ans_yoko<<" "<<ans_tate<<endl;
    
}
0