主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
孙某人
我是菠菜哥小号(二刷),第三是我大号
关注
发消息
文章
0
题解
67
发帖
0
笔记
2
Ta的粉丝
207
关注数
1
粉丝数
207
获赞数
29
阅读数
38274
最大连续子序列 题解:Python,对于负数严防死守,对于全负数中间加0 的尽力提取
while True: try: n = int(input()) if n == 0: break num = list(map(int,input().split())) max...
P1334
2024年10月10日 16:13
回复 0
|
赞 0
|
浏览 404
String Matching 题解:朴素字符串匹配(Python)
str1,str2 = map(str,input().split()) index = 0 for i in range(0,len(str1)-len(str2)+1): for j in range(0,len(str2)): if str1[i+j]...
P1270
2024年10月10日 11:18
回复 0
|
赞 0
|
浏览 206
进制转换 - 华科 题解:
str = input() str1 = list(str) num = [0]*8888 count = 0 for i in range(0,len(str1)): if str1[i] == 'a': print(10,end=' ') ...
P1720
2024年10月10日 10:59
回复 0
|
赞 0
|
浏览 205
8位二进制 题解:
while True: try: str = input() str1 = list(str) index = 0 for i in range(0,len(str)): if st...
P1950
2024年10月9日 18:31
回复 0
|
赞 0
|
浏览 234
进制转换 - 中南大学 题解:Python
n = int(input()) for i in range(0,n): m = int(input()) num = [0]*200 for j in range(0,200): num[j] = 1 ii = 0 ...
P1930
2024年10月9日 18:11
回复 0
|
赞 0
|
浏览 170
A + B 加强版 题解:跪求大佬,一直66%显示栈溢出
while True: str = ["a"]*100 str = list(input().split()) sum = 0 summax = 0 count = 0 index ...
P1323
2024年10月9日 11:22
回复 2
|
赞 0
|
浏览 265
容易的题 题解:Python 易错:注意譬如EAASY这种情况也算
while True: try: str = input() str1 = list(str) str2 = ['a']*10005 j = 0 for i in range(len(str...
P1667
2024年10月8日 17:28
回复 0
|
赞 0
|
浏览 212
约瑟夫问题 题解:Python就用for循环和数组解决问题
b,a =map(int,input().split()) num = [0]*105 #list1 = list(map(int,input().split())) 输入数组 for i in range(0,105): num[i] = 1 count = 0 co...
P1585
2024年10月7日 19:47
回复 0
|
赞 0
|
浏览 212
约瑟夫问题 题解:Python就用for循环和数组解决问题
b,a =map(int,input().split()) num = [0]*105 #list1 = list(map(int,input().split())) 输入数组 for i in range(0,105): num[i] = 1 count = 0 co...
P1585
2024年10月7日 19:47
回复 0
|
赞 0
|
浏览 327
与7无关的数 题解:多人喝酒游戏
while True: try: n = int(input()) sum = 0 for i in range(1,n+1): if i%7!=0 and i%10!=7 and i/10!=7: ...
P1235
2024年10月7日 17:18
回复 0
|
赞 0
|
浏览 295
阶乘2 题解:Python题解
while True: try: n = int(input()) sum0 = 0 sum1 = 0 sum00 = 0 sum01 = 0 sum11 = 0 ...
P1416
2024年10月7日 17:08
回复 0
|
赞 0
|
浏览 251
安全密码 题解:python第一个
while True: try: str = input() list1 = list(str) if len(list1)<8: print("No") else: ...
P1660
2024年10月2日 15:32
回复 0
|
赞 0
|
浏览 225
数字求和 题解:python问题,求助大佬
while True: try: list1 = list(map(int,input().split())) a = list1[0] sum = 0 for i in range(1,len(list1)): ...
P1263
2024年10月2日 14:49
回复 0
|
赞 0
|
浏览 292
数字 题解:字符串转字符数组(挑战python题解)
while True: try: str = input() array = list(str) line = [0]*10 for i in range(0,len(array)): if str[i...
P1668
2024年10月1日 20:09
回复 0
|
赞 0
|
浏览 206
众数 题解:挑战更新python题解
while True: try: line = [0]*11 line[0] = 0 list1 = list(map(int,input().split())) for i in range(0,20): ...
P1352
2024年10月1日 19:15
回复 0
|
赞 0
|
浏览 250
找x 题解:鼓捣好久(挑战更新python题解)
while True: try: n = int(input()) list1 = list(map(int,input().split())) b = int(input()) for i in range(0,n): ...
P1350
2024年10月1日 17:56
回复 0
|
赞 0
|
浏览 263
字符串处理-单词统计 题解:
str = input() count = 0 len1 = len(str) j = 0 index = 0 for i in str: if i!=' ': index = 1 continue else: ...
P1541
2024年10月1日 11:23
回复 0
|
赞 0
|
浏览 309
简单的求和 题解:Python 注意输入格式,不能分开input()
a,b = map(int,input().split()) sum = 0 sum1 = 0 for i in range(b+1): sum+=sum1 #print(sum1) sum1 = 0 for j in range(i+1): ...
P1083
2024年9月20日 19:58
回复 0
|
赞 0
|
浏览 266
学生成绩管理 题解:上机前最后一个题解
#include <iostream> #include <string.h> #include <math.h> #include <algorithm> using namespace std; typedef struct s...
P1052
2024年3月28日 15:34
回复 0
|
赞 0
|
浏览 656
斐波那契数列 题解:两种思路
1.直接 unsigned long long ,适合求位数小的 #include <iostream> #include <string.h> using namespace std; int main(){ unsigned long l...
P1111
2024年3月25日 15:38
回复 0
|
赞 0
|
浏览 577
1
2
3
4
本科学校:河北科技师范学院
目标学校:贵州大学
N诺官方认证
研究生 - 贵州大学