主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
damowanghwj
2024年3月22日 15:18
设计密码 题解:
P1548
回复 0
|
赞 0
|
浏览 456
#include<bits/stdc++.h> using namespace std; char ch[7] = {'~','!','@','#','%','^','$'}; int main(){ int n; int ans = 0; string s; int flag[4]; cin >> n; while(n--){ ans = 0; m...
1935569240
2024年3月9日 21:36
设计密码 题解:代码如下:
P1548
回复 0
|
赞 0
|
浏览 505
#include<iostream> #include<algorithm> #include<string> using namespace std; int main() { int n; cin >> n; for (int i = 0; i < n; i++) { string str; &...
我要上岸!
2024年3月7日 16:19
设计密码 题解:
P1548
回复 0
|
赞 0
|
浏览 492
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; string str; while (n--) { cin >> str; if (...
aksunlight
2020年4月25日 17:01
笨办法
P1548
回复 0
|
赞 0
|
浏览 8.7k
#include"stdio.h" #include"string.h" char s[55]; int main(void){ int m; scanf("%d", &m); for(int i = 0; i < m; i++){ memset(s, 0, sizeof(s)); ...
莫小七
2020年2月24日 11:35
1548设计密码
P1548
回复 0
|
赞 0
|
浏览 8.1k
#include <iostream> #include <string> #include <cstring> using namespace std; bool panduan(string s) { int a[4] = { 0 }, count = 0; if (s.size() < 8 || s.size() > 16) return false; for (int i = 0;i < s.size();i++) { if (s[i] >= 'A' &&...
mathor
2020年1月11日 19:12
Java代码
P1548
回复 0
|
赞 0
|
浏览 9.1k
import java.io.*; import java.util.*; import java.math.BigInteger; public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); int n = cin.nextInt(); &n...
题目
设计密码
题解数量
6
发布题解
热门题解
1
设计密码 题解:
2
笨办法
3
设计密码 题解:
4
1548设计密码
5
设计密码 题解:代码如下:
6
Java代码