Submission #495433

#TimeUsernameProblemLanguageResultExecution timeMemory
495433blueHarbingers (CEOI09_harbingers)C++17
0 / 100
1094 ms204 KiB
#include <iostream>
using namespace std;

int main()
{
    int a = 5;
    // cout << sizeof(a) << '\n';

    int* b = &a;
    // cout << sizeof(b) << '\n';

    if(sizeof(a) != sizeof(b)) while(1);
}
#Verdict Execution timeMemoryGrader output
Fetching results...