Submission #197679

#TimeUsernameProblemLanguageResultExecution timeMemory
197679joylintpscanf 함수 4 (BSC_0_6)C++17
100 / 100
3 ms504 KiB
#include<bits/stdc++.h>

using namespace std;

signed main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int cnt = 0, t;
    while (cin >> t)
        cnt++;
    cout << cnt << '\n';

    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...