結果

問題 No.152 貯金箱の消失
ユーザー woodsgreenwoodsgreen
提出日時 2022-12-16 17:43:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 86 ms / 5,000 ms
コード長 553 bytes
コンパイル時間 2,438 ms
コンパイル使用メモリ 200,864 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 18:14:43
合計ジャッジ時間 3,422 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 13 ms
6,940 KB
testcase_08 AC 85 ms
6,940 KB
testcase_09 AC 86 ms
6,944 KB
testcase_10 AC 67 ms
6,944 KB
testcase_11 AC 37 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int MOD=1000003;
long long n,ans;
long long gcd(long long p,long long q){
    long long r;
    while(q){
        r=p%q;
        p=q;
        q=r;
    }
    return p;
}
int main(){
    cin>>n;
    n/=4;
    for(long long i=1;i*i<n;++i)
        for(long long j=1;j<i;++j){
            long long a=i*i+j*j;
            long long b=2*i*j;
            long long c=i*i-j*j;
            if(a+b+c>n) break;
            if(gcd(gcd(a,b),c)==1)
                ans=(ans+1)%MOD;
        }
    cout<<ans;
    return 0;
}
0