题解列表

筛选

  编写题解 2914: 铺地毯

摘要:解题思路:注意事项:参考代码:public static void main(String args[]) { Scanner sc=new Scanner (System.in); in……

堆优化版的Dijskra

摘要:解题思路:注意事项:参考代码:#include<iostream>  #include<queue> #include<vector>  #include<cstring> using nam……

1074: 数字整除

摘要:解题思路:用用户输入的数据取模17即可得知是否为17的倍数注意事项:1、由于输入的是大数据,即用普通的int,long等装不下,故可用字符数组的方式容纳此数2、需要明白字符数组中的值转换为int数字类……

编写题解 2792: 三角形判断

摘要:解题思路:两个较短的边之和大于最长的那条边注意事项:参考代码:a=list(map(int,input().split()))a.sort()if a[0]+a[1]>a[2]:    print(&……

整数删除-能看懂系列

摘要:解题思路:第一份代码为通过的代码,借鉴于其处的方法,这边有些大佬的代码可能不太好理解,所以写了这个比较详细的,希望对各位有用;另外这个题我自己也有方法,容易理解但较为繁琐也可惜有4个输出超限,有兴趣的……

The 3n + 1 problem

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include<math.h>int main(){ int a,b; int i = 0; int x; while (scan……

A+B for Input-Output Practice (I)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){   int a,b;   while(cin>>a>>b)   cou……