# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
98108 | tushar_2658 | Palindromes (info1cup18_palindromes) | C++14 | 391 ms | 12308 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
#define file freopen("in.txt", "r", stdin);
const int maxn = 1e6 + 5;
ll arr[maxn], sum = 0;
int n;
bool check(ll n){
string s = to_string(n);
string s1 = s;
reverse(s.begin(), s.end());
return (s == s1);
}
int main(){
//file
scanf("%d", &n);
for(int i=0; i<n; i++){
scanf("%lld", &arr[i]);
}
for(int i=0; i<n; i++){
if(check(arr[i]))sum += arr[i];
}
printf("%lld\n", sum);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |