7800 2024. 01. 11 10:29:52 tamasmark Oszthatóság 31-gyel cpp17 Elfogadva 50/50 3ms 3368 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";
        if (x.size() - 1 > 0)
        {
            for (i = 0; i < x.size() - 1; ++i)
            {
                cout << x[i] << " ";
            }
        }
        else cout << "\n";
        
    }
    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
Részfeladat Összpont Teszt Verdikt Idő Memória
base 50/50
1 Elfogadva 0/0 3ms 1872 KiB
2 Elfogadva 0/0 3ms 2124 KiB
3 Elfogadva 3/3 3ms 2204 KiB
4 Elfogadva 3/3 3ms 2436 KiB
5 Elfogadva 4/4 3ms 2388 KiB
6 Elfogadva 4/4 3ms 2576 KiB
7 Elfogadva 4/4 3ms 2656 KiB
8 Elfogadva 4/4 3ms 2784 KiB
9 Elfogadva 4/4 3ms 2900 KiB
10 Elfogadva 4/4 3ms 2872 KiB
11 Elfogadva 4/4 3ms 2868 KiB
12 Elfogadva 4/4 3ms 2900 KiB
13 Elfogadva 4/4 3ms 2968 KiB
14 Elfogadva 4/4 3ms 2972 KiB
15 Elfogadva 2/2 3ms 3360 KiB
16 Elfogadva 2/2 3ms 3368 KiB