题解列表

筛选

2855: 简单密码

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;const ll N=1e5;char ……

2846: 统计数字字符个数

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

浮点数据类型大小

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a;    short b;    printf("%d %d",sizeof(a),sizeof……

高精度计算用Python爽到爆

摘要:from decimal import Decimal, getcontext # 设置小数点后的精度 getcontext().prec = 500 # 输入两个浮点数并转换为Decimal类……