40762023-03-13 08:08:11szabel26Oszthatóság 37-telcpp17Wrong answer 36/403ms3988 KiB
// oszthatosag37.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <queue>
#define ll long long
using namespace std;

ll n, i, u;
bool ok = false;

vector<ll>v;

int main()
{
    cin >> n;
    if (!(n % 37))
    {
        ok = true;
    }
    while (n > 0)
    {
        u = n % 10;
        n /= 10;
        n -= 11 * u;
        if (n >= 0)
        {
            v.push_back(n);
        }
    }

    if (ok) cout << "IGEN\n";
    else cout << "NEM\n";

    for (auto& e : v) cout << e << " ";
}

// 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
base36/40
1Accepted0/03ms2148 KiB
2Accepted0/02ms2200 KiB
3Accepted3/32ms2332 KiB
4Accepted3/32ms2376 KiB
5Accepted3/33ms2528 KiB
6Accepted3/33ms2736 KiB
7Accepted3/33ms2860 KiB
8Accepted3/33ms3096 KiB
9Accepted3/33ms3332 KiB
10Accepted3/33ms3440 KiB
11Accepted3/33ms3324 KiB
12Accepted3/33ms3516 KiB
13Accepted3/33ms3604 KiB
14Accepted3/32ms3708 KiB
15Wrong answer0/23ms3864 KiB
16Wrong answer0/22ms3988 KiB