QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#357832#6834. Nine Is Greater Than Tencrsfaa#AC ✓0ms3804kbC++14405b2024-03-19 13:29:152024-03-19 13:29:16

Judging History

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

  • [2024-03-19 13:29:16]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3804kb
  • [2024-03-19 13:29:15]
  • 提交

answer

#include<bits/stdc++.h>
#define Yukinoshita namespace
#define Yukino std
using Yukinoshita Yukino;
int read()
{
	int s=0,w=1;
	char ch=getchar();
	while(ch<'0'||ch>'9') w=ch=='-'?-1:1,ch=getchar();
	while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar();
	return s*w;
}
int main()
{
	string a,b;
	cin>>a>>b;
	if(a<b) cout<<a<<'<'<<b;
	if(a==b) cout<<a<<'='<<b;
	if(a>b) cout<<a<<'>'<<b;		
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3804kb

input:

9 10

output:

9>10

result:

ok "9>10"

Test #2:

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

input:

114514 1919

output:

114514<1919

result:

ok "114514<1919"

Test #3:

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

input:

9 999

output:

9<999

result:

ok "9<999"

Test #4:

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

input:

99 99

output:

99=99

result:

ok "99=99"

Test #5:

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

input:

2022 924

output:

2022<924

result:

ok "2022<924"

Test #6:

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

input:

1 1

output:

1=1

result:

ok "1=1"

Test #7:

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

input:

1 2

output:

1<2

result:

ok "1<2"

Test #8:

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

input:

2 1

output:

2>1

result:

ok "2>1"

Test #9:

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

input:

20220924 20220924

output:

20220924=20220924

result:

ok "20220924=20220924"

Test #10:

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

input:

20220924 999999

output:

20220924<999999

result:

ok "20220924<999999"

Test #11:

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

input:

1 11111111

output:

1<11111111

result:

ok "1<11111111"

Test #12:

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

input:

1231 12311

output:

1231<12311

result:

ok "1231<12311"

Test #13:

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

input:

432423 1123124

output:

432423>1123124

result:

ok "432423>1123124"

Test #14:

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

input:

9999 100000

output:

9999>100000

result:

ok "9999>100000"

Test #15:

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

input:

1926 817

output:

1926<817

result:

ok "1926<817"

Test #16:

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

input:

19260817 19491001

output:

19260817<19491001

result:

ok "19260817<19491001"

Test #17:

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

input:

20220924 1

output:

20220924>1

result:

ok "20220924>1"

Test #18:

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

input:

20220924 2

output:

20220924>2

result:

ok "20220924>2"

Test #19:

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

input:

20 2

output:

20>2

result:

ok "20>2"

Test #20:

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

input:

20220924 3

output:

20220924<3

result:

ok "20220924<3"

Test #21:

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

input:

1 2022

output:

1<2022

result:

ok "1<2022"

Test #22:

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

input:

2 2022

output:

2<2022

result:

ok "2<2022"

Test #23:

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

input:

3 2022

output:

3>2022

result:

ok "3>2022"

Test #24:

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

input:

12345678 90

output:

12345678<90

result:

ok "12345678<90"