QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#123685#6244. سینما بررهushg8877AC ✓1ms3628kbC++14200b2023-07-13 12:06:242023-07-13 12:06:27

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-13 12:06:27]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3628kb
  • [2023-07-13 12:06:24]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define MP make_pair
mt19937 rnd(time(0));
int main(){
	ios::sync_with_stdio(false);
	ll a,b;cin>>a>>b;
	cout<<min(a,b); 
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

6 12

output:

6

result:

ok single line: '6'

Test #2:

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

input:

12 8

output:

8

result:

ok single line: '8'

Test #3:

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

input:

15 15

output:

15

result:

ok single line: '15'

Test #4:

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

input:

100000000000000000 1000000000000000000


output:

100000000000000000

result:

ok single line: '100000000000000000'

Test #5:

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

input:

123456987654321 123456789123456789

output:

123456987654321

result:

ok single line: '123456987654321'