| 比赛 | 2026.9.12 | 评测结果 | WWWWWWWWWW |
|---|---|---|---|
| 题目名称 | 字符串游戏 | 最终得分 | 0 |
| 用户昵称 | 赵飞羽 | 运行时间 | 0.028 s |
| 代码语言 | C++ | 内存使用 | 3.70 MiB |
| 提交时间 | 2026-09-12 10:54:24 | ||
#include <bits/stdc++.h>
using namespace std;
constexpr int N = 10010;
int n;
string s;
signed main() {
freopen("string.in", "r", stdin);
freopen("string.out", "w", stdout);
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> s >> n;
cout << n;
return 0;
}