主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
ccccccyes
2024年8月26日 13:55
十进制和二进制 题解:
P1176
回复 0
|
赞 0
|
浏览 395
评测值:173先过 如果只过一半,应该是大整数没满足 可以试试10个9 在线二进制按位逆序运算工具-Bejson.com //都是bigInt的转换 //十进制转二进制,二进制转十进制 //有多次输入 //都是根据int的形式下的原理进行模拟 //类似与高精度 //十进制转二进制,求back%2,other/2获得下一次 //二进制转十进制,所有ou位均*2,每轮+ou.front #include <iostream> #include <vector> #include <string&...
xyfyoho
2024年8月20日 22:29
十进制和二进制 题解:C
P1176
回复 0
|
赞 0
|
浏览 362
逻辑有点混乱凑合看看 #include<stdio.h> #include<string.h> int max(int a,int b){ if(a>b)return a; else return b; } void add(char a[1005],char b[1005],char c[1005]){ int maxl=max(strlen(a),strlen(b)); int k=0; for(int i=0;i<maxl;i++){ int av=(a[i]-'0'); int bv=(...
sandyqin
2024年7月23日 00:31
十进制和二进制 超时了该怎么处理?
P1176
回复 1
|
赞 0
|
浏览 495
代码如下所示: #include <bits/stdc++.h> using namespace std; void f(int n){ char out[1010];//存字符 int cnt=0;//下标 while(n>0){ int w=n%2; if(w<10) out[cnt++]=w+'0'; else out[cnt++]=(w-10)+'...
myming
2024年7月20日 16:03
十进制和二进制 题解:
P1176
回复 0
|
赞 0
|
浏览 363
#include <bits/stdc++.h> using namespace std; // 将十进制字符串转换为二进制字符串 void decimalToBinary(char a[], char binary[]) { int len = strlen(a); int k = 0; while (len > 0) { binary[k++] = ((a[len - 1] - '0') % 2...
tuzhi
2024年6月28日 10:54
十进制和二进制 题解:
P1176
回复 1
|
赞 0
|
浏览 516
visual studio上运行编译都可以,不知道为什么这里说不行…… #include<iostream> #include<cstring> #include<cmath> #include<stdio.h> using namespace std; int main() { int n; while (cin >> n) { &...
我与代码的故事
2024年6月16日 18:39
十进制和二进制(Py秒了,巨坑:多组测试输入题目没说) 题解:
P1176
回复 0
|
赞 1
|
浏览 1.7k
大数问题直接py while True: try: a = int(input()) a = format(a, 'b') b = a[::-1] b = int(b, 2) print(b) except: break
等等
2024年4月12日 18:03
十进制和二进制 50%通过率,有大佬可以帮忙看看吗
P1176
回复 2
|
赞 0
|
浏览 995
#include<bits/stdc++.h> using namespace std; int main() { char a[200],buf[200]; int b[200]; while(cin>>a){ int len=strlen(a); ...
Kohi
2024年3月17日 18:55
十进制和二进制 题解:
P1176
回复 1
|
赞 0
|
浏览 844
#include <bits/stdc++.h> using namespace std; string division(string s, const int &from, const int &to, int &remain){ remain = 0; for(int i = 0; i < s.size(); i++){ int temp = remain * from + s[i] - '0'; ...
testzzz666
2024年3月22日 20:45
java
P1176
回复 0
|
赞 0
|
浏览 470
import java.math.BigInteger; import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sr = new Scanner(System.in); while (sr.hasNext()) { // 这个n是你输入的10进制数 BigInteger n; ...
渐鸿于陆
2024年3月22日 18:01
十进制和二进制 题解:还是写不出来
P1176
回复 2
|
赞 0
|
浏览 589
#include<stdio.h> #include<string.h> char s[1005]; int arr[1005]; int ans[5000]; int convert(int arr[],int ans[],int len){ int j,num=0,i = 0,k = 0; int quotient,reminder; while(i<len){ ...
1
2
3
题目
十进制和二进制
题解数量
27
发布题解
热门题解
1
十进制和二进制(Py秒了,巨坑:多组测试输入题目没说) 题解:
2
admin发布的参考代码
3
求解为什么就是通过不了,答案错误,哭
4
大家请仔细读题
5
P1176 解题思路分享
6
记得多组输入
7
通不过的可能原因之一
8
懵逼
9
十进制和二进制 题解:C
10
求大佬帮忙看看哪里错了,感觉没错啊