QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#450646 | #6834. Nine Is Greater Than Ten | PetroTarnavskyi# | AC ✓ | 0ms | 3860kb | C++20 | 637b | 2024-06-22 16:40:06 | 2024-06-22 16:40:07 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define FOR(i, a, b) for(int i = (a); i < (b); i++)
#define RFOR(i, a, b) for(int i = (a) - 1; i >= (b); i--)
#define SZ(a) int(a.size())
#define ALL(a) a.begin(), a.end()
#define PB push_back
#define MP make_pair
#define F first
#define S second
typedef long long LL;
typedef vector<int> VI;
typedef pair<int, int> PII;
typedef double db;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
string s, t;
cin >> s >> t;
cout << s;
if (s < t)
cout << '<';
else if(s == t)
cout << '=';
else
cout << '>';
cout << t << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3784kb
input:
9 10
output:
9>10
result:
ok "9>10"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
114514 1919
output:
114514<1919
result:
ok "114514<1919"
Test #3:
score: 0
Accepted
time: 0ms
memory: 3628kb
input:
9 999
output:
9<999
result:
ok "9<999"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
99 99
output:
99=99
result:
ok "99=99"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
2022 924
output:
2022<924
result:
ok "2022<924"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3660kb
input:
1 1
output:
1=1
result:
ok "1=1"
Test #7:
score: 0
Accepted
time: 0ms
memory: 3616kb
input:
1 2
output:
1<2
result:
ok "1<2"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3500kb
input:
2 1
output:
2>1
result:
ok "2>1"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
20220924 20220924
output:
20220924=20220924
result:
ok "20220924=20220924"
Test #10:
score: 0
Accepted
time: 0ms
memory: 3656kb
input:
20220924 999999
output:
20220924<999999
result:
ok "20220924<999999"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3508kb
input:
1 11111111
output:
1<11111111
result:
ok "1<11111111"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
1231 12311
output:
1231<12311
result:
ok "1231<12311"
Test #13:
score: 0
Accepted
time: 0ms
memory: 3852kb
input:
432423 1123124
output:
432423>1123124
result:
ok "432423>1123124"
Test #14:
score: 0
Accepted
time: 0ms
memory: 3596kb
input:
9999 100000
output:
9999>100000
result:
ok "9999>100000"
Test #15:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
1926 817
output:
1926<817
result:
ok "1926<817"
Test #16:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
19260817 19491001
output:
19260817<19491001
result:
ok "19260817<19491001"
Test #17:
score: 0
Accepted
time: 0ms
memory: 3860kb
input:
20220924 1
output:
20220924>1
result:
ok "20220924>1"
Test #18:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
20220924 2
output:
20220924>2
result:
ok "20220924>2"
Test #19:
score: 0
Accepted
time: 0ms
memory: 3504kb
input:
20 2
output:
20>2
result:
ok "20>2"
Test #20:
score: 0
Accepted
time: 0ms
memory: 3556kb
input:
20220924 3
output:
20220924<3
result:
ok "20220924<3"
Test #21:
score: 0
Accepted
time: 0ms
memory: 3504kb
input:
1 2022
output:
1<2022
result:
ok "1<2022"
Test #22:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
2 2022
output:
2<2022
result:
ok "2<2022"
Test #23:
score: 0
Accepted
time: 0ms
memory: 3624kb
input:
3 2022
output:
3>2022
result:
ok "3>2022"
Test #24:
score: 0
Accepted
time: 0ms
memory: 3560kb
input:
12345678 90
output:
12345678<90
result:
ok "12345678<90"