#include<bits/stdc++.h>
using namespace std;
int main(){
	string n;
	cin>>n;
	cout<<n.size();
    return 0;
}

这个代码提交到 A2 上用 C++14 (O2) 为啥会 RE 啊?

它说 No Output File Found.

每道题都要用 freopen 吗?

3 条评论

  • 1