結果
問題 | No.152 貯金箱の消失 |
ユーザー |
![]() |
提出日時 | 2015-02-15 23:45:52 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2,585 ms / 5,000 ms |
コード長 | 7,146 bytes |
コンパイル時間 | 1,235 ms |
コンパイル使用メモリ | 117,516 KB |
実行使用メモリ | 159,452 KB |
最終ジャッジ日時 | 2024-06-23 20:31:42 |
合計ジャッジ時間 | 35,055 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
#include <cassert>// c#include <iostream>// io#include <iomanip>#include <fstream>#include <sstream>#include <vector>// container#include <map>#include <set>#include <queue>#include <bitset>#include <stack>#include <algorithm>// other#include <complex>#include <numeric>#include <functional>#include <random>#include <regex>using namespace std;using i32=int32_t;using i64=int64_t;using ll =i64;using uint=uint32_t;using ull=uint64_t;template<typename T> using matrix=vector<vector<T> >;#define ALL(c) (begin(c)),(end(c))#define REP(i,n) FOR(i,0,n)#define REPr(i,n) FORr(i,0,n)#define FOR(i,l,r) for(int i=(int)(l);i<(int)(r);++i)#define FORr(i,l,r) for(int i=(int)(r)-1;i>=(int)(l);--i)#define EACH(it,o) for(auto it = (o).begin(); it != (o).end(); ++it)#define IN(l,v,r) ((l)<=(v) && (v)<(r))#define UNIQUE(v) v.erase(unique(ALL(v)),v.end())//debug#define DUMP(x) cerr << #x << " = " << (x)#define LINE() cerr<< " (L" << __LINE__ << ")"class range {private:struct Iter{int v;int operator*(){return v;}bool operator!=(Iter& itr) {return v < itr.v;}void operator++() {++v;}};Iter i, n;public:range(int n) : i({0}), n({n}) {}range(int i, int n) : i({i}), n({n}) {}Iter& begin() {return i;}Iter& end() {return n;}};//inputtemplate<typename T1,typename T2> istream& operator >> (istream& is,pair<T1,T2>& p){is>>p.first>>p.second;return is;}template<typename T1> istream& operator >> (istream& is,tuple<T1>& t){is >> get<0>(t);return is;}template<typename T1,typename T2> istream& operator >> (istream& is,tuple<T1,T2>& t){is >> get<0>(t) >> get<1>(t);return is;}template<typename T1,typename T2,typename T3> istream& operator >> (istream& is,tuple<T1,T2,T3>& t){is >>get<0>(t)>>get<1>(t)>>get<2>(t);return is;}template<typename T1,typename T2,typename T3,typename T4> istream& operator >> (istream& is,tuple<T1,T2,T3,T4>& t){is >> get<0>(t)>>get<1>(t)>>get<2>(t)>>get<3>(t);return is;}template<typename T1,typename T2,typename T3,typename T4,typename T5> istream& operator >> (istream& is, const tuple<T1,T2,T3,T4,T5>& t){is >> get<0>(t) >> get<1>(t) >> get<2>(t) >> get<3>(t) >> get<4>(t);return is;}template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6> istream& operator >> (istream& is, const tuple<T1,T2,T3,T4,T5,T6>&t){is >> get<0>(t) >> get<1>(t) >> get<2>(t) >> get<3>(t) >> get<4>(t) >> get<5>(t);return is;}template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6,typename T7> istream& operator >> (istream& is, const tuple<T1,T2,T3,T4,T5,T6,T7>& t){is >> get<0>(t) >> get<1>(t) >> get<2>(t) >> get<3>(t) >> get<4>(t) >> get<5>(t) >> get<6>(t);return is;}template<typename T> istream& operator >> (istream& is,vector<T>& as){REP(i,as.size())is >>as[i];return is;}//outputtemplate<typename T> ostream& operator << (ostream& os, const set<T>& ss){for(auto a:ss){if(a!=ss.begin())os<<" "; os<<a;}return os;}template<typename T1,typename T2> ostream& operator << (ostream& os, const pair<T1,T2>& p){os<<p.first<<" "<<p.second;return os;}template<typename K,typename V> ostream& operator << (ostream& os, const map<K,V>& m){bool isF=true;for(auto& p:m){if(!isF)os<<endl;os<<p;isF=false;}return os;}template<typename T1> ostream& operator << (ostream& os, const tuple<T1>& t){os << get<0>(t);return os;}template<typename T1,typename T2> ostream& operator << (ostream& os, const tuple<T1,T2>& t){os << get<0>(t)<<" "<<get<1>(t);return os;}template<typename T1,typename T2,typename T3> ostream& operator << (ostream& os, const tuple<T1,T2,T3>& t){os << get<0>(t)<<" "<<get<1>(t)<<" "<<get<2>(t);return os;}template<typename T1,typename T2,typename T3,typename T4> ostream& operator << (ostream& os, const tuple<T1,T2,T3,T4>& t){os << get<0>(t)<<" "<<get<1>(t)<<" "<<get<2>(t)<<" "<<get<3>(t);return os;}template<typename T1,typename T2,typename T3,typename T4,typename T5> ostream& operator << (ostream& os, const tuple<T1,T2,T3,T4,T5>& t){os << get<0>(t)<<" "<<get<1>(t)<<" "<<get<2>(t)<<" "<<get<3>(t)<<" "<<get<4>(t);return os;}template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6> ostream& operator << (ostream& os, const tuple<T1,T2,T3,T4,T5,T6>&t){os << get<0>(t)<<" "<<get<1>(t)<<" "<<get<2>(t)<<" "<<get<3>(t)<<" "<<get<4>(t)<<" "<<get<5>(t);return os;}template<typename T1,typename T2,typename T3,typename T4,typename T5,typename T6,typename T7> ostream& operator << (ostream& os, const tuple<T1,T2,T3,T4,T5,T6,T7>& t){os << get<0>(t)<<" "<<get<1>(t)<<" "<<get<2>(t)<<" "<<get<3>(t)<<" "<<get<4>(t)<<" "<<get<5>(t)<<" "<<get<6>(t);return os;}template<typename T> ostream& operator << (ostream& os, const vector<T>& as){REP(i,as.size()){if(i!=0)os<<" "; os<<as[i];}return os;}template<typename T> ostream& operator << (ostream& os, const vector<vector<T>>& as){REP(i,as.size()){if(i!=0)os<<endl; os<<as[i];}return os;}//inputchar tmp[1000];#define nextInt(n) scanf("%d",&n)#define nextLong(n) scanf("%lld",&n) //I64d#define nextDouble(n) scanf("%lf",&n)#define nextChar(n) scanf("%c",&n)#define nextString(n) scanf("%s",tmp);n=tmp// valuestemplate<typename T> T INF(){assert(false);};template<> int INF<int>(){return 1<<28;};template<> ll INF<ll>(){return 1LL<<58;};template<> double INF<double>(){return 1e16;};template<class T> T EPS(){assert(false);};template<> int EPS<int>(){return 1;};template<> ll EPS<ll>(){return 1LL;};template<> double EPS<double>(){return 1e-8;};template<> long double EPS<long double>(){return 1e-8;};template<typename T,typename U> T pmod(T v,U M){return (v%M+M)%M;}ll gcd_positive(ll a,ll b) { return b == 0 ? a : gcd_positive(b,a%b); }ll gcd(ll a,ll b) { return gcd_positive(abs(a), abs(b)); }ll lcm(ll a,ll b){return a/gcd(a,b)*b;}template<typename T> class Monoid{public:virtual T e()=0,c(T,T)=0;};template<typename T> class Group:public virtual Monoid<T>{public:virtual T inv(T)=0;};template <typename T> using CommutativeGroup = Group<T>;ll MOD=1e6+3;template<typename T> class PlusGroup:public Group<T>{public:T e(){return 0;}T c(T a,T b){return (a+b)%MOD;}T inv(T a){return pmod(-a,MOD);}static PlusGroup<T>& i(){static PlusGroup<T> i;return i;}};template<typename T> class CumulativeSum{public:const int size;Group<T>& g;vector<T> dat;CumulativeSum(vector<T>& as,Group<T>& g):size(as.size()),g(g){dat=vector<T>(size+1,g.e());for(int i:range(1,size+1))dat[i] =g.c(dat[i-1],as[i-1]);}T sum(int a,int b){// [a,b)return g.c(dat[b],g.inv(dat[a]));}};class Main{public:void run(){ll L;cin >> L;ll LMAX=10000000;vector<ll> ls(LMAX+1);for(ll m=1;2*m*1<=LMAX;m++){for(ll n=1;2*m*n<=LMAX && n<m;n++){if(m%2 !=0 && n%2 !=0)continue;if(gcd(n,m)!=1)continue;ll S= m*m+n*n + 2*m*n + m*m - n*n;if(S<=LMAX){// cerr << m*m+n*n + 2*m*n + m*m - n*n <<endl;ls[S]++;ls[S]%=MOD;}}}CumulativeSum<ll> sum(ls,PlusGroup<ll>::i());cout << sum.sum(0,L/4+1)%MOD<<endl;}};int main(){cout <<fixed<<setprecision(20);cin.tie(0);ios::sync_with_stdio(false);Main().run();return 0;}