Submission #1035941

#TimeUsernameProblemLanguageResultExecution timeMemory
1035941HienTDscanf 함수 4 (BSC_0_6)C++14
100 / 100
0 ms360 KiB
#include <bits/stdc++.h> #define FOR(i, a, b) for(int i = (a), _b = (b); i <= _b; ++ i) #define FORD(i, b, a) for(int i = (b), _a = (a); i >= _a; -- i) #define REP(i, n) for(int i = 0, _n = (n); i < _n; ++ i) #define FORE(i, v) for(__typeof((v).begin()) i = (v).begin(); i != (v).end(); ++ i) #define ALL(v) (v).begin(), (v).end() #define IS_INF(x) (std::isinf(x)) #define IS_NAN(x) (std::isnan(x)) #define fi first #define se second #define MASK(i) (1LL << (i)) #define BIT(x, i) (((x) >> (i)) & 1) #define div ___div #define prev ___prev #define left ___left #define __builtin_popcount __builtin_popcountll using namespace std; template<class X, class Y> bool minimize(X &x, const Y &y){ if(x > y){ x = y; return true; } else return false; } template<class X, class Y> bool maximize(X &x, const Y &y){ if(x < y){ x = y; return true; } else return false; } template<class T> T abs(const T &x){ return (x < 0 ? -x : x); } /** END OF TEMPLATE **/ void init(){ // } int process(){ // } int main(){ // init(); // process(); int N = 0, t; while (scanf("%d", &t) != EOF) N++; return !printf("%d\n", N); return 0; }

Compilation message (stderr)

scanf4.cpp: In function 'int process()':
scanf4.cpp:46:1: warning: no return statement in function returning non-void [-Wreturn-type]
   46 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...