QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#406271 | #6834. Nine Is Greater Than Ten | james1BadCreeper# | AC ✓ | 1ms | 3660kb | C++20 | 548b | 2024-05-07 08:08:05 | 2024-05-07 08:08:07 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
string a, b;
int main(void) {
cin >> a >> b;
int n = min(a.length(), b.length());
for (int i = 0; i < n; ++i)
if (a[i] < b[i]) return cout << a << "<" << b << "\n", 0;
else if (a[i] > b[i]) return cout << a << ">" << b << "\n", 0;
if (a.length() < b.length()) return cout << a << "<" << b << "\n", 0;
else if (a.length() > b.length()) return cout << a << ">" << b << "\n", 0;
else return cout << a << "=" << b << "\n", 0;
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3600kb
input:
9 10
output:
9>10
result:
ok "9>10"
Test #2:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
114514 1919
output:
114514<1919
result:
ok "114514<1919"
Test #3:
score: 0
Accepted
time: 1ms
memory: 3548kb
input:
9 999
output:
9<999
result:
ok "9<999"
Test #4:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
99 99
output:
99=99
result:
ok "99=99"
Test #5:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
2022 924
output:
2022<924
result:
ok "2022<924"
Test #6:
score: 0
Accepted
time: 0ms
memory: 3584kb
input:
1 1
output:
1=1
result:
ok "1=1"
Test #7:
score: 0
Accepted
time: 1ms
memory: 3548kb
input:
1 2
output:
1<2
result:
ok "1<2"
Test #8:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
2 1
output:
2>1
result:
ok "2>1"
Test #9:
score: 0
Accepted
time: 0ms
memory: 3512kb
input:
20220924 20220924
output:
20220924=20220924
result:
ok "20220924=20220924"
Test #10:
score: 0
Accepted
time: 1ms
memory: 3492kb
input:
20220924 999999
output:
20220924<999999
result:
ok "20220924<999999"
Test #11:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
1 11111111
output:
1<11111111
result:
ok "1<11111111"
Test #12:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
1231 12311
output:
1231<12311
result:
ok "1231<12311"
Test #13:
score: 0
Accepted
time: 0ms
memory: 3484kb
input:
432423 1123124
output:
432423>1123124
result:
ok "432423>1123124"
Test #14:
score: 0
Accepted
time: 0ms
memory: 3548kb
input:
9999 100000
output:
9999>100000
result:
ok "9999>100000"
Test #15:
score: 0
Accepted
time: 0ms
memory: 3528kb
input:
1926 817
output:
1926<817
result:
ok "1926<817"
Test #16:
score: 0
Accepted
time: 0ms
memory: 3564kb
input:
19260817 19491001
output:
19260817<19491001
result:
ok "19260817<19491001"
Test #17:
score: 0
Accepted
time: 0ms
memory: 3640kb
input:
20220924 1
output:
20220924>1
result:
ok "20220924>1"
Test #18:
score: 0
Accepted
time: 0ms
memory: 3644kb
input:
20220924 2
output:
20220924>2
result:
ok "20220924>2"
Test #19:
score: 0
Accepted
time: 0ms
memory: 3552kb
input:
20 2
output:
20>2
result:
ok "20>2"
Test #20:
score: 0
Accepted
time: 0ms
memory: 3520kb
input:
20220924 3
output:
20220924<3
result:
ok "20220924<3"
Test #21:
score: 0
Accepted
time: 1ms
memory: 3660kb
input:
1 2022
output:
1<2022
result:
ok "1<2022"
Test #22:
score: 0
Accepted
time: 1ms
memory: 3552kb
input:
2 2022
output:
2<2022
result:
ok "2<2022"
Test #23:
score: 0
Accepted
time: 0ms
memory: 3544kb
input:
3 2022
output:
3>2022
result:
ok "3>2022"
Test #24:
score: 0
Accepted
time: 1ms
memory: 3564kb
input:
12345678 90
output:
12345678<90
result:
ok "12345678<90"