Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149833 李明秦 字符串的长度 C++ Accepted 1 MS 272 KB 127 2026-03-18 17:49:10

Tests(1/1):


Code:

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