题解列表

筛选

C++时间转换

摘要:```cpp #include using namespace std; int main() { int h,m,s,n; cin>>n; h=n/3600; ……

模拟兰顿蚂蚁

摘要:解题思路:模拟过程参考代码:```rows, cols = map(int, input().split()) l = [list(map(int, input().split())) for i ……

传染病控制Python题解

摘要:代码参考https://blog.csdn.net/qq_47780707/article/details/122612528n,p=map(int,input().split()) #链接表的第一……