题解列表
2857: 加密的病历单
摘要:```python
s = input()
news = str()
for c in s:
if c.isupper(): news += c.lower()
else: ……
(java)小白的思路,简明易懂{91分可能都是这个原因}
摘要:解题思路:* 思路:假设k=10,数列为 1,10,11,100,101,110...... 显然数列为二进制顺序,序号与其对应的二进制值相等 因此要求某一位的值时,先将其……
蓝桥杯2014年第五届真题-分糖果
摘要:解题思路:注意事项:参考代码:head = int(input())n = map(int,input().strip().split())n = list(n)num = 0jurge = len(……
2917: 奇数单增序列
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <algorithm>
using namespace std;
int main() {
……
2916: 谁考了第k名 (结构体+sort函数)
摘要:解题思路: 1.定义结构体 2.循环输入数据 3.sort排序 4.输出第k名注意事项:参考代码:#include <bits/stdc++.h>
using namespace std;
……
题目 1216: 成绩转换题解
摘要:参考代码:#include<iostream>
using namespace std;
int main(){
int score;
while(cin>>score){
……
题目 1213: 幸运儿题解
摘要:参考代码:#include<iostream>
using namespace std;
int n;
bool flag[100];
bool f(){
int num=0;
……