QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#882063#10030. Grand Prix of Array CountCrysfly🌈AC ✓19ms3584kbC++112.6kb2025-02-04 20:50:572025-02-04 20:50:58

Judging History

This is the latest submission verdict.

  • [2025-02-04 20:50:58]
  • Judged
  • Verdict: AC
  • Time: 19ms
  • Memory: 3584kb
  • [2025-02-04 20:50:57]
  • Submitted

answer

// what is matter? never mind. 
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("unroll-loops")
//#pragma GCC target("sse,sse2,sse3,sse4,popcnt,abm,mmx,avx,avx2")
#include<bits/stdc++.h>
#define For(i,a,b) for(int i=(a);i<=(b);++i)
#define Rep(i,a,b) for(int i=(a);i>=(b);--i)
#define ll long long
#define ull unsigned long long
#define int long long
#define SZ(x) ((int)((x).size()))
#define ALL(x) (x).begin(),(x).end()
using namespace std;
inline int read()
{
	char c=getchar();int x=0;bool f=0;
	for(;!isdigit(c);c=getchar())f^=!(c^45);
	for(;isdigit(c);c=getchar())x=(x<<1)+(x<<3)+(c^48);
	return f?-x:x;
}

#define mod 1000000007
struct modint{
	unsigned int x;
	modint(int o=0){x=o;}
	modint &operator = (int o){return x=o,*this;}
	modint &operator +=(modint o){return x=x+o.x>=mod?x+o.x-mod:x+o.x,*this;}
	modint &operator -=(modint o){return x=x<o.x?x-o.x+mod:x-o.x,*this;}
	modint &operator *=(modint o){return x=1ll*x*o.x%mod,*this;}
	modint &operator ^=(int b){
		modint a=*this,c=1;
		for(;b;b>>=1,a*=a)if(b&1)c*=a;
		return x=c.x,*this;
	}
	modint &operator /=(modint o){return *this *=o^=mod-2;}
	friend modint operator +(modint a,modint b){return a+=b;}
	friend modint operator -(modint a,modint b){return a-=b;}
	friend modint operator *(modint a,modint b){return a*=b;}
	friend modint operator /(modint a,modint b){return a/=b;}
	friend modint operator ^(modint a,int b){return a^=b;}
	friend bool operator ==(modint a,modint b){return a.x==b.x;}
	friend bool operator !=(modint a,modint b){return a.x!=b.x;}
	bool operator ! () {return !x;}
	modint operator - () {return x?mod-x:0;}
	bool operator <(const modint&b)const{return x<b.x;}
};
inline modint qpow(modint x,int y){return x^y;}

vector<modint> fac,ifac,iv;
inline void initC(int n)
{
	if(iv.empty())fac=ifac=iv=vector<modint>(2,1);
	int m=iv.size(); ++n;
	if(m>=n)return;
	iv.resize(n),fac.resize(n),ifac.resize(n);
	For(i,m,n-1){
		iv[i]=iv[mod%i]*(mod-mod/i);
		fac[i]=fac[i-1]*i,ifac[i]=ifac[i-1]*iv[i];
	}
}
inline modint C(int n,int m){
	if(m<0||n<m)return 0;
	return initC(n),fac[n]*ifac[m]*ifac[n-m];
}
inline modint sign(int n){return (n&1)?(mod-1):(1);}

#define fi first
#define se second
#define pb push_back
#define mkp make_pair
typedef pair<int,int>pii;
typedef vector<int>vi;

#define maxn 500005
#define inf 0x3f3f3f3f

int n,k;

signed main()
{
	n=read(),k=read();
	if(n&1){
		modint res=(k%mod);
		res*=(k%mod);
		cout<<res.x;
	}else{
		modint res=0;
		for(int l=1,r;l<=k;l=r+1){
			r=k/(k/l);
			modint tmp=(k/l%mod); tmp*=tmp;
			res+=((r-l+1)%mod)*tmp;
		}
		cout<<res.x;
	}
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 1ms
memory: 3456kb

input:

5 2

output:

4

result:

ok 1 number(s): "4"

Test #2:

score: 0
Accepted
time: 1ms
memory: 3456kb

input:

32 5

output:

32

result:

ok 1 number(s): "32"

Test #3:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

5 3

output:

9

result:

ok 1 number(s): "9"

Test #4:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

5 4

output:

16

result:

ok 1 number(s): "16"

Test #5:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

5 5

output:

25

result:

ok 1 number(s): "25"

Test #6:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

6 2

output:

5

result:

ok 1 number(s): "5"

Test #7:

score: 0
Accepted
time: 0ms
memory: 3456kb

input:

6 3

output:

11

result:

ok 1 number(s): "11"

Test #8:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

6 4

output:

22

result:

ok 1 number(s): "22"

Test #9:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

6 5

output:

32

result:

ok 1 number(s): "32"

Test #10:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

6 6

output:

52

result:

ok 1 number(s): "52"

Test #11:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

1000000000000 2

output:

5

result:

ok 1 number(s): "5"

Test #12:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

1000000000000 3

output:

11

result:

ok 1 number(s): "11"

Test #13:

score: 0
Accepted
time: 1ms
memory: 3456kb

input:

1000000000000 4

output:

22

result:

ok 1 number(s): "22"

Test #14:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

1000000000000 5

output:

32

result:

ok 1 number(s): "32"

Test #15:

score: 0
Accepted
time: 18ms
memory: 3456kb

input:

1000000000000 1000000000000

output:

840670140

result:

ok 1 number(s): "840670140"

Test #16:

score: 0
Accepted
time: 19ms
memory: 3456kb

input:

1000000000000 999999999999

output:

451060960

result:

ok 1 number(s): "451060960"

Test #17:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

999999999999 999999999999

output:

49014001

result:

ok 1 number(s): "49014001"

Test #18:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

999999999999 1000000000000

output:

49000000

result:

ok 1 number(s): "49000000"

Test #19:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

999999999999 2

output:

4

result:

ok 1 number(s): "4"

Test #20:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

999999999999 3

output:

9

result:

ok 1 number(s): "9"

Test #21:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

999999999999 4

output:

16

result:

ok 1 number(s): "16"

Test #22:

score: 0
Accepted
time: 1ms
memory: 3584kb

input:

999999999999 5

output:

25

result:

ok 1 number(s): "25"

Test #23:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

5 999999999999

output:

49014001

result:

ok 1 number(s): "49014001"

Test #24:

score: 0
Accepted
time: 18ms
memory: 3584kb

input:

6 999999999999

output:

451060960

result:

ok 1 number(s): "451060960"

Test #25:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

7 999999999999

output:

49014001

result:

ok 1 number(s): "49014001"

Test #26:

score: 0
Accepted
time: 18ms
memory: 3584kb

input:

8 999999999999

output:

451060960

result:

ok 1 number(s): "451060960"

Test #27:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

5 1000000000000

output:

49000000

result:

ok 1 number(s): "49000000"

Test #28:

score: 0
Accepted
time: 19ms
memory: 3584kb

input:

6 1000000000000

output:

840670140

result:

ok 1 number(s): "840670140"

Test #29:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

7 1000000000000

output:

49000000

result:

ok 1 number(s): "49000000"

Test #30:

score: 0
Accepted
time: 17ms
memory: 3456kb

input:

8 1000000000000

output:

840670140

result:

ok 1 number(s): "840670140"

Test #31:

score: 0
Accepted
time: 18ms
memory: 3456kb

input:

983302239554 983302239554

output:

62350851

result:

ok 1 number(s): "62350851"

Test #32:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

983302239553 983302239553

output:

384847475

result:

ok 1 number(s): "384847475"

Test #33:

score: 0
Accepted
time: 10ms
memory: 3584kb

input:

283302239554 283302239554

output:

579148388

result:

ok 1 number(s): "579148388"

Test #34:

score: 0
Accepted
time: 1ms
memory: 3584kb

input:

283302239553 283302239553

output:

289022341

result:

ok 1 number(s): "289022341"

Test #35:

score: 0
Accepted
time: 0ms
memory: 3456kb

input:

10000001 10000001

output:

19300001

result:

ok 1 number(s): "19300001"

Test #36:

score: 0
Accepted
time: 1ms
memory: 3584kb

input:

20000003 20000003

output:

117200009

result:

ok 1 number(s): "117200009"

Test #37:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

30000001 30000001

output:

53700001

result:

ok 1 number(s): "53700001"

Test #38:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

40000001 40000001

output:

68800001

result:

ok 1 number(s): "68800001"

Test #39:

score: 0
Accepted
time: 0ms
memory: 3584kb

input:

8 9

output:

115

result:

ok 1 number(s): "115"