# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1120201 | 2024-11-28T06:31:24 Z | vjudge1 | Palindrome-Free Numbers (BOI13_numbers) | C++17 | 1000 ms | 512 KB |
#include <bits/stdc++.h> using namespace std; #define int long long #define ld double const int INF = 1e18; const int mod = 12345; const int sz = 1e5 + 5; bool pal(string z) { string s = z; reverse(s.begin() , s.end()); return z == s; } bool f(int x) { string s; s = to_string(x); for(int i = 0;i < s.size() - 1;i++) { string c = ""; c += s[i]; for(int j = i + 1;j < s.size();j++) { c += s[j]; if(c[0] == c[c.size() - 1]){ if(pal(c)) return true; } } } return false; } signed main() { ios_base::sync_with_stdio(0);cin.tie(0); int a , b; cin >> a >> b; int ans = 0; for(int i = a;i <= b;i++) { if(f(i)) { ans++; } } cout << b - a + 1 - ans << endl; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 336 KB | Output is correct |
2 | Correct | 1 ms | 336 KB | Output is correct |
3 | Correct | 107 ms | 336 KB | Output is correct |
4 | Correct | 7 ms | 336 KB | Output is correct |
5 | Correct | 1 ms | 336 KB | Output is correct |
6 | Correct | 1 ms | 336 KB | Output is correct |
7 | Correct | 1 ms | 336 KB | Output is correct |
8 | Correct | 1 ms | 512 KB | Output is correct |
9 | Correct | 1 ms | 336 KB | Output is correct |
10 | Correct | 1 ms | 336 KB | Output is correct |
11 | Correct | 1 ms | 336 KB | Output is correct |
12 | Correct | 1 ms | 336 KB | Output is correct |
13 | Correct | 1 ms | 336 KB | Output is correct |
14 | Correct | 11 ms | 452 KB | Output is correct |
15 | Correct | 10 ms | 336 KB | Output is correct |
16 | Correct | 1 ms | 336 KB | Output is correct |
17 | Correct | 5 ms | 336 KB | Output is correct |
18 | Correct | 1 ms | 336 KB | Output is correct |
19 | Correct | 114 ms | 440 KB | Output is correct |
20 | Correct | 10 ms | 460 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1063 ms | 340 KB | Time limit exceeded |
2 | Execution timed out | 1047 ms | 336 KB | Time limit exceeded |
3 | Execution timed out | 1025 ms | 336 KB | Time limit exceeded |
4 | Execution timed out | 1055 ms | 512 KB | Time limit exceeded |
5 | Execution timed out | 1065 ms | 336 KB | Time limit exceeded |
6 | Execution timed out | 1069 ms | 336 KB | Time limit exceeded |
7 | Correct | 478 ms | 336 KB | Output is correct |
8 | Correct | 350 ms | 436 KB | Output is correct |
9 | Correct | 545 ms | 440 KB | Output is correct |
10 | Correct | 898 ms | 336 KB | Output is correct |
11 | Execution timed out | 1061 ms | 336 KB | Time limit exceeded |
12 | Execution timed out | 1037 ms | 336 KB | Time limit exceeded |
13 | Execution timed out | 1066 ms | 336 KB | Time limit exceeded |
14 | Execution timed out | 1045 ms | 336 KB | Time limit exceeded |
15 | Execution timed out | 1055 ms | 336 KB | Time limit exceeded |
16 | Execution timed out | 1066 ms | 336 KB | Time limit exceeded |
17 | Execution timed out | 1065 ms | 336 KB | Time limit exceeded |
18 | Execution timed out | 1060 ms | 336 KB | Time limit exceeded |
19 | Execution timed out | 1061 ms | 336 KB | Time limit exceeded |
20 | Execution timed out | 1058 ms | 336 KB | Time limit exceeded |
21 | Execution timed out | 1062 ms | 336 KB | Time limit exceeded |
22 | Execution timed out | 1064 ms | 336 KB | Time limit exceeded |
23 | Execution timed out | 1063 ms | 336 KB | Time limit exceeded |
24 | Execution timed out | 1078 ms | 336 KB | Time limit exceeded |
25 | Execution timed out | 1062 ms | 336 KB | Time limit exceeded |
26 | Execution timed out | 1044 ms | 504 KB | Time limit exceeded |
27 | Execution timed out | 1049 ms | 336 KB | Time limit exceeded |
28 | Execution timed out | 1047 ms | 336 KB | Time limit exceeded |
29 | Execution timed out | 1052 ms | 336 KB | Time limit exceeded |
30 | Execution timed out | 1061 ms | 336 KB | Time limit exceeded |
31 | Execution timed out | 1055 ms | 336 KB | Time limit exceeded |
32 | Execution timed out | 1051 ms | 336 KB | Time limit exceeded |
33 | Execution timed out | 1055 ms | 336 KB | Time limit exceeded |
34 | Execution timed out | 1071 ms | 336 KB | Time limit exceeded |
35 | Execution timed out | 1038 ms | 336 KB | Time limit exceeded |
36 | Execution timed out | 1049 ms | 336 KB | Time limit exceeded |
37 | Execution timed out | 1051 ms | 336 KB | Time limit exceeded |
38 | Execution timed out | 1043 ms | 336 KB | Time limit exceeded |
39 | Execution timed out | 1049 ms | 336 KB | Time limit exceeded |
40 | Execution timed out | 1045 ms | 336 KB | Time limit exceeded |
41 | Execution timed out | 1078 ms | 336 KB | Time limit exceeded |
42 | Execution timed out | 1086 ms | 336 KB | Time limit exceeded |
43 | Execution timed out | 1084 ms | 336 KB | Time limit exceeded |
44 | Execution timed out | 1083 ms | 336 KB | Time limit exceeded |
45 | Execution timed out | 1060 ms | 348 KB | Time limit exceeded |