Submission #699684

#TimeUsernameProblemLanguageResultExecution timeMemory
699684finn__Pipes (BOI13_pipes)C++17
35 / 100
1 ms348 KiB
#include <bits/stdc++.h>
using namespace std;

int main()
{
    size_t n, m;
    scanf("%zu %zu", &n, &m);

    if (m > n)
    {
        printf("0\n");
        return 0;
    }
}

Compilation message (stderr)

pipes.cpp: In function 'int main()':
pipes.cpp:7:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
    7 |     scanf("%zu %zu", &n, &m);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...