题解列表

筛选

简单直接写

摘要:解题思路:代入公式注意事项:参考代码:……

编写题解 1118: Tom数

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

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

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

计算邮资(C++)

摘要:# include <bits/stdc++.h>  using namespace std; int main () { int n; char c; cin >> n >……

点和正方形的关系

摘要:# include <bits/stdc++.h>  using namespace std; int main () { int x,y; cin >> x >> y; ……

我的代码最垃圾(哭)

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define N 100010typedef struct {    int a, b;} i……