UOJ Logo

NOI.AC

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#185269#1. A+B Problemwosile1001954ms1204kbC++11219b2023-09-26 15:30:462023-09-26 15:30:48

answer

#include<bits/stdc++.h>
using namespace std;
int main(){
	double f1=1.0*clock()/CLOCKS_PER_SEC;
	int a,b;
	cin>>a>>b;
	cout<<a+b;
	unsigned cnt=0;
	while(1.0*clock()/CLOCKS_PER_SEC-f1<0.995)cnt++;
	return 0;
}

详细

小提示:点击横条可展开更详细的信息

Test #1:

score: 10
Accepted
time: 280ms
memory: 1204kb

input:

23 24

output:

47

result:

ok 1 number(s): "47"

Test #2:

score: 10
Accepted
time: 171ms
memory: 1204kb

input:

233 1

output:

234

result:

ok 1 number(s): "234"

Test #3:

score: 10
Accepted
time: 202ms
memory: 1204kb

input:

222 333

output:

555

result:

ok 1 number(s): "555"

Test #4:

score: 10
Accepted
time: 170ms
memory: 1204kb

input:

1 333

output:

334

result:

ok 1 number(s): "334"

Test #5:

score: 10
Accepted
time: 175ms
memory: 1200kb

input:

222 333

output:

555

result:

ok 1 number(s): "555"

Test #6:

score: 10
Accepted
time: 173ms
memory: 1204kb

input:

242 333

output:

575

result:

ok 1 number(s): "575"

Test #7:

score: 10
Accepted
time: 204ms
memory: 1204kb

input:

222 3330

output:

3552

result:

ok 1 number(s): "3552"

Test #8:

score: 10
Accepted
time: 186ms
memory: 1200kb

input:

2220 333

output:

2553

result:

ok 1 number(s): "2553"

Test #9:

score: 10
Accepted
time: 197ms
memory: 1204kb

input:

222 555

output:

777

result:

ok 1 number(s): "777"

Test #10:

score: 10
Accepted
time: 196ms
memory: 1200kb

input:

222 3333

output:

3555

result:

ok 1 number(s): "3555"

Extra Test:

score: 0
Extra Test Passed