题解列表

筛选

感谢支持,谢谢你们的支持

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    char iq;    cin>>iq;    if……

题解 2779: 输出绝对值

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;double a;int main(){    cin>>a;    if(a>0……

幂的末尾(python简单解法)

摘要:解题思路:这题很简单,直接看注释参考代码:a, b = map(int, input().split())x = (a ** b) % 1000    #要求a**b的末三位,所以取1000的余数if……

用头文件更快捷

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){    char s[300];    ge……

python来解一下

摘要:解题思路:while True: try: s=list(map(int,input().split())) n,m,items=s[0],s[1],s[2:] a=[i for……