Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
149809 李朋秦 字符串的长度 C++ Accepted 1 MS 276 KB 124 2026-03-17 17:45:39

Tests(1/1):


Code:

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