编写题解 1209: 密码截获 摘要:解题思路:注意事项:参考代码:while True: try: st=input() ts=st[::-1] s=[] &n 题解列表 2022年04月08日 0 点赞 0 评论 152 浏览 评分:0.0
密码截获1209 摘要:解题思路:稍微有些麻烦了,但很好理解注意事项:参考代码:#include<stdio.h>#include<string.h>int m,x,y;int judge(char s1[1000]) { …… 题解列表 2022年02月11日 0 点赞 0 评论 164 浏览 评分:0.0
密码截获 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int huiwen_judge(int m,int k,char *s){ int l=m; int l1=k; f…… 题解列表 2019年02月03日 0 点赞 0 评论 430 浏览 评分:0.0
又是一个动态规划的题 摘要:#include<iostream> using namespace std; int main() { string s; while(getline(cin,s)) …… 题解列表 2023年08月18日 0 点赞 0 评论 60 浏览 评分:0.0
密码截获-题解(C++代码)穷举 + 优化,马拉车还没消化,以后补上 摘要:——————————————————————————————— M 1 & 题解列表 2020年09月21日 0 点赞 0 评论 405 浏览 评分:0.0
非常暴力的解法 摘要:```python def f(s):#判断是否对称 if s==s[::-1]: return True else: return Fals…… 题解列表 2022年04月07日 0 点赞 0 评论 245 浏览 评分:0.0
密码截获 (C语言代码) 摘要:解题思路:暴力获得一个字符串的所有部分,分别检查是否对称,如果是,比较它的长度与max注意事项:参考代码:#include<stdio.h>#include<string.h>#include<std…… 题解列表 2018年06月03日 0 点赞 0 评论 597 浏览 评分:0.0
已是最短了,请放心食用 摘要:解题思路注意事项:参考代码:#include<stdio.h>#include<string.h>int PalindromeString(char *s)//写一个函数来得到每一轮的结果,返回一个…… 题解列表 2024年11月21日 0 点赞 0 评论 70 浏览 评分:0.0
zb-关于1209密码截获问题,我的简单粗暴方法 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(){ string s; int…… 题解列表 2022年02月07日 0 点赞 0 评论 111 浏览 评分:0.0
密码截获-题解(C++代码) 摘要:```cpp #include using namespace std; bool pan_huiwei(string s){ int len=s.size(); for(i…… 题解列表 2020年04月19日 0 点赞 0 评论 409 浏览 评分:0.0