Submission #527751

#TimeUsernameProblemLanguageResultExecution timeMemory
527751pokmui9909scanf 함수 4 (BSC_0_6)C++17
100 / 100
1 ms316 KiB
#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    cin.tie(0) -> sync_with_stdio(false);

    ll N = 0, C = 0;
    while(cin >> N) C++;
    cout << C;
}
#Verdict Execution timeMemoryGrader output
Fetching results...