题解列表

筛选

超快set解法

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

使用深度优先搜索DFS

摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { static int[] arr=new int[4]; sta……

编写题解 1118: Tom数

摘要:解题思路:注意事项:参考代码:while True:     try:         print(sum(list(map(int, input()))))     except:     ……

1003: [编程入门]密码破译

摘要:解题思路:注意事项:参考代码:str = input().lower() s = "" for i in str:     if i == &#39;w&#39;:         s += ……