ICode9

精准搜索请尝试: 精确搜索
  • 第8期-鸡兔同笼2022-01-06 16:33:14

    1 问题描述 大约在1500年前,《孙子算经》中就记载了这个有趣的问题:“今有雉兔同笼,上有三十五头,下有九十四足,问雉兔各几何?”意思是,有若干只鸡和兔子关在同一个笼子里,从上面数有35个头,从下面数有94只脚,问:笼子中有多少只鸡?多少只兔子? 我们今天用Python解决鸡兔同笼问题:请用户输入头数

  • 1092 To Buy or Not to Buy (20 分)(hash散列)2022-01-03 12:04:00

    Eva would like to make a string of beads with her favorite colors so she went to a small shop to buy some beads. There were many colorful strings of beads. However the owner of the shop would only sell the strings in whole pieces. Hence Eva must check whe

  • LeetCode 3. Longest Substring Without Repeating Characters (Medium)2021-12-30 02:03:56

    题目   Given a string s, find the length of the longest substring without repeating characters. Example 1: Input: s = "abcabcbb" Output: 3 Explanation: The answer is "abc", with the length of 3. Example 2: Input: s = "bbbbb" O

  • 1061 判断题 (15 分)(C++)2021-12-26 20:01:52

    判断题的评判很简单,本题就要求你写个简单的程序帮助老师判题并统计学生们判断题的得分。 输入格式: 输入在第一行给出两个不超过 100 的正整数 N 和 M,分别是学生人数和判断题数量。第二行给出 M 个不超过 5 的正整数,是每道题的满分值。第三行给出每道题对应的正确答案,0 代表“非

  • UVA11547 Automatic Answer 题解2021-12-23 20:36:08

    Content 题面扯了一大堆空话。 真正的题意是:有 \(T\) 个询问,每次给出一个数 \(n\),求出 \((567n\div 9+7492)\times235\div47-498\) 的十位数。 数据范围:\(1\leqslant T\leqslant 100,-1000\leqslant n\leqslant 1000\)。 Solution 我们考虑把这个式子化简: \((63n+7492)\times235\d

  • Codeforces C. Wrong Addition2021-12-21 14:01:15

    Codeforces Round #762 (Div. 3) Tanya is learning how to add numbers, but so far she is not doing it correctly. She is adding two numbers aa and bb using the following algorithm: If one of the numbers is shorter than the other, Tanya adds leading zeros

  • leetcode851. 喧闹和富有(贪心 拓扑 dp)2021-12-16 16:33:35

    链接:https://leetcode-cn.com/problems/loud-and-rich/ 题目 有一组 n 个人作为实验对象,从 0 到 n - 1 编号,其中每个人都有不同数目的钱,以及不同程度的安静值(quietness)。为了方便起见,我们将编号为 x 的人简称为 "person x "。 给你一个数组 richer ,其中 richer[i] = [ai, bi]

  • Leetcode--Java--368. 最大整除子集2021-12-15 10:31:58

    题目描述 给你一个由 无重复 正整数组成的集合 nums ,请你找出并返回其中最大的整除子集 answer ,子集中每一元素对 (answer[i], answer[j]) 都应当满足: answer[i] % answer[j] == 0 ,或 answer[j] % answer[i] == 0 如果存在多个有效解子集,返回其中任何一个均可。 样例描述 示

  • 考试答题系统模板html和css2021-12-11 20:02:57

    <!DOCTYPE html> <html lang="en"> <head>     <meta charset="UTF-8">     <meta http-equiv="X-UA-Compatible" content="IE=edge">     <meta name="viewport" content="width=

  • LeetCode --- 1018. Binary Prefix Divisible By 5 解题报告2021-12-03 22:00:53

    You are given a binary array nums (0-indexed). We define xi as the number whose binary representation is the subarray nums[0..i] (from most-significant-bit to least-significant-bit). For example, if nums = [1,0,1], then x0 = 1, x1 = 2, and x2 

  • 第20章:MRC通用架构双线模型内核机制、数学原理2021-11-26 12:02:41

    1,双线模型架构解析:Multiple Encoders、Interaction 2,双线模型中为何Interaction环节是实现信息理解的关键? 3,双线模型底层数学原理剖析 4,Embeddings下的One-hot Representation及多层One-hot机制解析 5,Embeddings下的Word2vec的CBOW模型解析及源码实现 6,Embeddings下的Word2vec

  • java伪静态化 使用@pathvariable方式2021-11-23 19:31:34

    介绍 网上基本上都是使用urlrewrite来完成批量伪静态化的,伪静态化就是将地址http://localhost:8080/answer?id=36642这种地址转换成http://localhost:8080/answer/36642.html。 有利于搜索引擎的收入,通过对URL的一些优化,可以使搜索引擎更好的识别与收录网站的信息 如果只是几

  • 牛牛的朋友2021-11-20 16:33:53

    牛牛有一群牛友,每只小牛都站在坐标轴上的某个位置,这群牛友很听牛牛的话,每当牛牛做个手势,每只小牛都会移动恰好X个单位的距离,要么向左,要么向右 现在告诉你每只小牛在移动前的位置,求移动之后最左边的牛与最右边的牛的最小距离 输入描述: 第一行输入一个整数n (1 ≤ n ≤ 50),表

  • 哪里有问题2021-11-20 10:01:39

    import random as r import easygui as e while True: lis=['1','2','3','4','5','6','7','8','9'] caipiao=r.sample(lis,5) caipiao=''.join(caipiao)

  • D - 暴力(稍简单)2021-11-18 21:30:00

    百钱买百鸡问题:公鸡五文钱一只,母鸡三文钱一只,小鸡三只一文钱,用 100 文钱买 100 只鸡,公鸡、母鸡、小鸡各买多少只? 本程序要求解的问题是:给定一个正整数 n,用 n 文钱买 n 只鸡,问公鸡、母鸡、小鸡各买多少只? 输入格式 输入一个正整数 n。 输出格式 如果有解,依次输出公鸡、母鸡、

  • P2550 [AHOI2001]彩票摇奖2021-11-18 00:01:51

    #include<bits/stdc++.h> using namespace std; int main() { int n;//彩票数 int arry_right[7];//中奖号码 int arry_buy[1000][7];//买的号码 int answer[7] = {0};//最终中奖的彩票数 int ans = 0; cin >> n; for (int i = 0; i < 7; i++) { cin >> arry_

  • Rasa2.x机器人实现《买瓜》完整代码2021-11-17 16:32:49

    结果 第一次安装 参考https://rasa.com/docs/rasa/installation 注意: 1.最好不要装在C盘,虚拟环境占用的空间很大 2.虚拟环境不能随意移动,移动后无法运行 3.首先按提示更新pip版本再pip install rasa, 否则会报错 4.rasa init 出现问题,需要pip uninstall keras, pip install

  • 434. 字符串中的单词数2021-11-12 17:03:21

    题目描述: 统计字符串中的单词个数,这里的单词指的是连续的不是空格的字符。 请注意,你可以假定字符串里不包括任何不可打印的字符。 思路:统计是空格的字符,跳过, 不是空格的字符遍历完整个单词+1 代码实现:     public int countSegments(String s) {         int

  • 1018. 可被 5 整除的二进制前缀2021-11-07 23:30:00

    给定由若干 0 和 1 组成的数组 A。我们定义 N_i:从 A[0] 到 A[i] 的第 i 个子数组被解释为一个二进制数(从最高有效位到最低有效位)。 返回布尔值列表 answer,只有当 N_i 可以被 5 整除时,答案 answer[i] 为 true,否则为 false。 示例 1: 输入:[0,1,1] 输出:[true,false,false] 解释:

  • 进制转化伪代码2021-11-07 16:00:28

    实现进制转化伪代码 Write "Enter the new base"Read newBaseWrite "Enter the number to be converted"Read decimalNumberSet quotient to 1WHILE (quotient is not zero) Set quotient to decimalNumber DIV newBase Set remainder to decimalNumber REM newB

  • 实现进制转化伪代码2021-11-07 12:32:37

    实现进制转化伪代码 伪代码 Write "Enter the new base" Read newBase Write "Enter the number to be converted" Read decimalNumber Set quotient to 1 WHILE (quotient is not zero) Set quotient to decimalNumber DIV newBase Set remainder to decimalNumber R

  • 进制转化伪代码2021-11-06 15:34:38

    Write "Enter the new base" Read newBase Write "Enter the number to be converted" Read decimalNumber Set quotient to 1 WHILE (quotient is not zero) Set quotient to decimalNumber DIV newBase Set remainder to decimalNumber REM newBase

  • 实现伪代码进制转换2021-11-05 18:33:40

    伪代码进制转换 伪代码 Write "Enter the new base" Read newBase Write "Enter the number to be converted" Read decimalNumber

  • 实现进制转化伪代码2021-11-05 12:31:26

    代码 newBase = eval(input("请输入进制类型")) decimalNumber = eval(input("请输入数据")) quotient = 1 answer = '' list = {'10': 'A', '11': 'B', '12': 'C', '13': 'D�

  • 实现进制转换伪代码2021-11-04 21:03:21

    伪代码: Write "Enter the new base" Read newBase Write "Enter the number to be converted" Read decimalNumber Set quotient to 1 WHILE (quotient is not zero) Set quotient to decimalNumber DIV newBase Set remainder to decimalNumber REM ne

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有