31232023-02-17 07:57:48tamasmarkOszthatóság 31-gyelcpp17Wrong answer 48/503ms3876 KiB
// oszthatosag 31-el.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

vector<long long>x;
long long n, i, akt;

int main()
{
    cin >> n;
    while (n>0)
    {
        akt = 3*(n % 10);
        n = (n / 10) - akt;
        x.push_back(n);
    }
    if (n == 0)
    {
        cout<<"IGEN"<<"\n";
        for (i = 0; i < x.size(); ++i)
        {
            cout << x[i] << " ";
        }
    }
    else
    {
        cout << "NEM" << "\n";
        for (i = 0; i < x.size()-1; ++i)
        {
            cout << x[i] << " ";
        }
    }
    return 0;
}
//204197
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
SubtaskSumTestVerdictTimeMemory
base48/50
1Accepted0/03ms1876 KiB
2Accepted0/03ms2076 KiB
3Accepted3/33ms2180 KiB
4Accepted3/32ms2276 KiB
5Accepted4/43ms2380 KiB
6Accepted4/43ms2632 KiB
7Accepted4/43ms2840 KiB
8Accepted4/43ms3016 KiB
9Accepted4/43ms3104 KiB
10Accepted4/43ms3100 KiB
11Accepted4/43ms3228 KiB
12Accepted4/42ms3316 KiB
13Accepted4/43ms3592 KiB
14Accepted4/43ms3568 KiB
15Accepted2/23ms3664 KiB
16Wrong answer0/23ms3876 KiB