제출 #699684

#제출 시각아이디문제언어결과실행 시간메모리
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; } }

컴파일 시 표준 에러 (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...