QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#78265#5503. Euclidean AlgorithmCrysflyAC ✓3578ms3504kbC++111.1kb2023-02-17 15:27:152023-02-17 15:27:18

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-02-17 15:27:18]
  • 评测
  • 测评结果:AC
  • 用时:3578ms
  • 内存:3504kb
  • [2023-02-17 15:27:15]
  • 提交

answer

// what is matter? never mind. 
#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 int long long
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);
	if(f)x=-x;return x;
}

#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 800005
#define inf 0x3f3f3f3f

int n;

map<int,int>mp;

int calc(int n){
	int a,b,k,res=0;
	for(a=1;a*a<=n;++a){
		k=n/(double)a;
		res+=k;
	}
	for(k=n/(double)a;k>=1;a=b+1,--k)
		b=n/(double)k,res+=(b-a+1)*k;
	return res; 
}

int calc1(int n){
	int res=0; 
	for(int l=1,r;l<=n;l=r+1){
		r=n/(n/l);
		res+=(r-l+1)*calc(n/l-1);
	}
	return res;
}

void work()
{
//	mp.clear();
	n=read();
	int res=calc1(n);
	cout<<res<<'\n';
}

signed main()
{
	int T=read();
	while(T--)work();
	return 0;
}
/*

10 17
3 10 31

G 4G 7G 10G
G 3G 5G 7G 9G
G 2G 3G 4G 5G


4
A
QUERY B
ADD BBABBBBAAB
QUERY B
*/


詳細信息

Test #1:

score: 100
Accepted
time: 2ms
memory: 3436kb

input:

3
2
5
14

output:

1
9
62

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 1974ms
memory: 3348kb

input:

3
29107867360
65171672278
41641960535

output:

8921593237533
21300450379732
13136180138425

result:

ok 3 lines

Test #3:

score: 0
Accepted
time: 3528ms
memory: 3492kb

input:

3
90076809172
100000000000
99913139559

output:

30192292781431
33790187414013
33758574429172

result:

ok 3 lines

Test #4:

score: 0
Accepted
time: 3578ms
memory: 3300kb

input:

3
99997992652
99832769119
99997176887

output:

33789456663124
33729325483151
33789159765448

result:

ok 3 lines

Test #5:

score: 0
Accepted
time: 924ms
memory: 3504kb

input:

30
500000004
991026973
875910473
804967563
817240034
859023503
871905363
994897763
533952899
999999996
500000003
851714124
618161807
500000002
500000000
642565501
703104463
520948789
513785485
999999997
1000000000
579195816
999999998
965942980
870891922
571793533
723494232
999999999
590539561
500000...

output:

106931694901
226252654431
197658605222
180202748830
183212809398
193491469207
196669619643
227219558906
114922441260
228494567273
106931693908
191690034392
134938724588
106931693896
106931693226
140788123843
155385451308
111856217326
110170204124
228494567397
228494568703
125643111389
228494567464
2...

result:

ok 30 lines

Test #6:

score: 0
Accepted
time: 450ms
memory: 3208kb

input:

3000
684920
881740
317776
310160
23336
999832
819596
973868
166
449876
290325
912538
999939
282224
600310
448121
816943
972518
895590
612220
349205
52931
999880
267637
549817
513310
182
852220
314635
377356
96591
628319
999757
597508
896048
116
71393
735158
203
282
68
33305
762621
745035
922434
5853...

output:

67611341
90223986
28005207
27233331
1319648
104127915
83003612
101051578
2569
41769873
25235715
93827427
104140754
24424464
58142642
41582414
82697155
100892535
91843138
59465231
31217321
3478468
104133259
22974376
52576328
48594603
2923
86785163
27686009
34130245
7039269
61257408
104119319
57832117...

result:

ok 3000 lines