Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
41855 陈栋 字符串的长度 C++ Accepted 2 MS 276 KB 121 2022-11-07 20:50:33

Tests(1/1):


Code:

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