9 条题解
-
1
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); string n; string s; getline(cin,n); getline(cin,s); int n1 = stoi(n); int count = 0; for(int i = 0; i < n1; i++){ if(s[i] != ' '){ count++; } } cout << count << endl; return 0; }
信息
- ID
- 12
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 6
- 标签
- 递交数
- 1505
- 已通过
- 406
- 上传者