主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
OnlyBUPT
2020年4月8日 11:16
大佬帮我看看,只能通过90%,时间超时
P1469
回复 1
|
赞 0
|
浏览 7.7k
#include <iostream> #include <string> #include <cstring> using namespace std; int common(string s1,string s2){ if(s1 == s2){ return 0; }else if(s1[1] == s2[0] && s1[2] == s2[1]){ ...
题目
Mature Restaurateu
题解数量
1
发布题解
热门题解
1
大佬帮我看看,只能通过90%,时间超时