简单易于理解的天数问题——Python 摘要:a,b,c=map(int,input().strip().split())m=[31,28,31,30,31,30,31,…… 题解列表 2025年01月16日 1 点赞 0 评论 370 浏览 评分:10.0
简单易于理解的字符串提取问题——Python 摘要:a=eval(input())b=list(input())c=eval(input())foriinb[c-1:]:&nb…… 题解列表 2025年01月16日 1 点赞 0 评论 503 浏览 评分:10.0
[NOIP2004]合并果子 优先队列 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"usingnamespacestd;#definell&nb…… 题解列表 2025年01月16日 0 点赞 0 评论 294 浏览 评分:0.0
简单易懂 给个赞 嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){&nb…… 题解列表 2025年01月16日 13 点赞 0 评论 1022 浏览 评分:9.0
筛选N以内的素数python 摘要:n=int(input())for i in range(2,n): for j in range(2,i): if i%j==0: brea…… 题解列表 2025年01月16日 1 点赞 0 评论 721 浏览 评分:0.0
迭代法求平方根python 摘要:参考代码:a=int(input())b=awhile True: c=(b+a/b)/2 if abs(b-c)<0.00001: …… 题解列表 2025年01月16日 1 点赞 0 评论 773 浏览 评分:10.0
简单易懂 给个赞 嘻嘻 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void fact(int n);int main(){ int n; // n 是空的汽水瓶 while (1) { s…… 题解列表 2025年01月16日 2 点赞 0 评论 667 浏览 评分:10.0
小朋友排队 (归并排序) 摘要: #include using namespace std; typedef long long ll; const int N = 1e5 + 10; …… 题解列表 2025年01月15日 0 点赞 0 评论 547 浏览 评分:0.0
c++++++++++++++++++++++++ 摘要:includeincludeincludeincludeinclude // 包含 pairusing namespace std;int main() { ve…… 题解列表 2025年01月15日 0 点赞 0 评论 442 浏览 评分:0.0