답안 #570659

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
570659 2022-05-31T02:03:08 Z AGE Lun (COCI19_lun) C++14
25 / 50
1 ms 212 KB
#include<bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define int long long
using namespace std;

main()
{
    int n;
    cin>>n;

    string s;
    cin>>s;

    reverse(s.begin(),s.end());
    int index;

    for(int i=0;i<s.size();i++)
        if(s[i]=='x')
            index=i;

    if(index==0){
        int sum=0;

        for(int i=1;i<s.size();i++){
            if(i%2!=0){

                int x=s[i]-'0';
                x*=2;

                int y=0;
                while(x){
                    y+=x%10;
                    x/=10;
                }

                sum+=y;
            }

            else
                sum+=s[i]-'0';
        }


        sum*=9;
        cout<<sum%10<<endl;
    }



    return 0;
}

Compilation message

lun.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~
lun.cpp: In function 'int main()':
lun.cpp:19:18: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   19 |     for(int i=0;i<s.size();i++)
      |                 ~^~~~~~~~~
lun.cpp:26:22: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   26 |         for(int i=1;i<s.size();i++){
      |                     ~^~~~~~~~~
lun.cpp:23:5: warning: 'index' may be used uninitialized in this function [-Wmaybe-uninitialized]
   23 |     if(index==0){
      |     ^~
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Correct 1 ms 212 KB Output is correct
3 Correct 1 ms 212 KB Output is correct
4 Correct 0 ms 212 KB Output is correct
5 Correct 1 ms 212 KB Output is correct
6 Incorrect 1 ms 212 KB Output isn't correct
7 Incorrect 1 ms 212 KB Output isn't correct
8 Incorrect 1 ms 212 KB Output isn't correct
9 Incorrect 1 ms 212 KB Output isn't correct
10 Incorrect 1 ms 212 KB Output isn't correct