题解列表

筛选

2042: 杨辉三角

摘要:解题思路:注意事项:注意const int N=1e3+5不是1e3如果是1e3会数据越界参考代码:#include <bits/stdc++.h>using namespace std;typede……

简单易懂,看懂给个好评!

摘要:解题思路:注意事项:参考代码:h = 0q = 0hours = []n = int(input())for i in range(n):    q += 1    a, b = map(int, i……

1074数字整除(数学除法)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char arr[200]; while(scanf("%s",arr)!=EOF) { if(arr[0]=……