30682023-02-13 08:35:08tamasmarkOszthatóság 31-gyelcpp17Wrong answer 48/503ms4188 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;
int 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/03ms1748 KiB
2Accepted0/03ms2188 KiB
3Accepted3/33ms2352 KiB
4Accepted3/33ms2472 KiB
5Accepted4/43ms2728 KiB
6Accepted4/43ms2800 KiB
7Accepted4/43ms2940 KiB
8Accepted4/43ms3152 KiB
9Accepted4/43ms3208 KiB
10Accepted4/43ms3332 KiB
11Accepted4/43ms3540 KiB
12Accepted4/43ms3776 KiB
13Accepted4/43ms3988 KiB
14Accepted4/43ms4032 KiB
15Accepted2/23ms4188 KiB
16Wrong answer0/23ms4172 KiB