QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#753799#2910. Rise and Falli24WA 2ms3792kbC++14894b2024-11-16 13:38:542024-11-16 13:38:55

Judging History

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

  • [2024-11-16 13:38:55]
  • 评测
  • 测评结果:WA
  • 用时:2ms
  • 内存:3792kb
  • [2024-11-16 13:38:54]
  • 提交

answer

// File generated on 24/11/15 21:20 by Anand

#include <bits/stdc++.h>
using namespace std;

#define fastio ios::sync_with_stdio(false); cin.tie(0)
#define rep(i, m, n)  for (long long i = m; i < n; i++)
#define DEBUG(x) cout << "debug: " << x << "\n"
#define YES cout << "YES\n"
#define NO cout << "NO\n"
#define pb push_back
#define sz size

typedef long long ll;
typedef pair<ll,ll> pll;
typedef vector<ll> vec;
typedef vector<vec> vecc;
typedef vector<pll> vecp;

void SOLVE() {
    string s;
    cin >> s;
    ll n = s.size();
    cout << s[0];
    bool f = false;
    char x;
    rep(i,1,n) {
        if (!f && s[i - 1] <= s[i]) {cout << s[i];}
        else if (!f) {f = true; x = s[i];}
        if (f) {cout << x;}
    }
    cout << "\n";
}

signed main() {
    fastio;

    ll _;
    cin >> _;

    while(_--) 
		SOLVE();

    return 0;
}


詳細信息

Test #1:

score: 0
Wrong Answer
time: 2ms
memory: 3792kb

input:

22221
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
10...

output:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
100
100
...

result:

wrong answer 210th lines differ - expected: '210', found: '211'