题解列表

筛选

满分dfs(python)

摘要:解题思路:注意事项:参考代码:import functools n,m = map(int, input().split()) @functools.lru_cache(None) def df……

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

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

百钱白鸡最简单方法

摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ printf("cock=0,hen=25,chicken=75\n……

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

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

三目运算符闰年判断

摘要:代码:#include <stdio.h>#define LEAP_YEAR(y) (y%400 ==0 ? printf("L") : ((y%4 ==0 && y%100 != 0) ? prin……

回文日期(c++)

摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){     char arr[8];     scanf("……