主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
acd131415
2024年3月19日 16:40
十进制和二进制 题解:是不是长整型溢出了啊
P1176
回复 1
|
赞 0
|
浏览 458
#include<iostream> #include<queue> #include<stack> using namespace std; stack<int> queue1; void bin(int n){ if(n==1){queue1.push(1);return;} else{ queue1.push(n%2); &nbs...
渐鸿于陆
2024年3月17日 15:30
十进制和二进制 题解:用了 long long int,AC50%.应
P1176
回复 1
|
赞 0
|
浏览 682
#include"stdio.h" #include"string.h" int main(void){ int ans; long long int n; char s[105]; while(scanf("%lld",&n) != EOF){ ans = 0; &n...
damowanghwj
2024年3月12日 13:27
十进制和二进制 题解:实现了二进制字符串转化为十进制字符串 但依旧还是
P1176
回复 2
|
赞 0
|
浏览 674
#include <iostream> #include<cstdio> #include<algorithm> #include<string> #include<vector> using namespace std; int CharToInt(char c){ int w = c-'0'; return w; } char IntToChar(int n){ char c = n + '0...
阿离
2024年3月2日 19:39
十进制和二进制 题解:这为什吗不对呀
P1176
回复 3
|
赞 0
|
浏览 901
#include <bits/stdc++.h> using namespace std; int main(){ char s[105]; int n; int cnt=0,ans = 0; scanf("%d",&n); while(n>0){ ...
Arrobear
2024年1月2日 02:18
十进制和二进制 题解:C++的,不知道为什么有一半数据过不了,有没有大
P1176
回复 1
|
赞 0
|
浏览 949
#include<bits/stdc++.h> using namespace std; int fun(int* m, int len) { int p = 0; for (int i = 0; i < len; i++) { if (m[i] != 0) p = 1;  ...
fxl
2023年8月9日 21:37
十进制和二进制 题解:
P1176
回复 0
|
赞 0
|
浏览 1.3k
while True: try: a = eval(input()) b = list() while a>0: b.append(a%2) a=a//2 ans=0 l = len(b) for i in range(l): ans = 2*ans + int(b[i]) print(ans) except: break
928上岸梦校!
2023年8月5日 10:41
admin发布的参考代码
P1176
回复 0
|
赞 1
|
浏览 1.4k
#include <bits/stdc++.h> using namespace std; const int maxn = 4000; // 因为输入的10进制不超过1000位,则转换成2进制应该不超过4000位(2^4 = 16) const int oldBase = 10; // 原始进制 const int newBase = 2; // 新进制 string str; // 因为输入为不超过1000位的10进制数则应该用字符串接收 /* * 数组的 0 号元素均用于存储数组的长度 */ int br[maxn] = {0}...
_lz
2020年4月10日 18:43
牛客网是AC的,这边AC不了?
P1176
回复 4
|
赞 0
|
浏览 18.6k
#include <iostream> #include <stdio.h> #include <string.h> using namespace std; const int maxn = 1010; const int maxb = 40010; char s[maxn]; char b[maxb]; int indexlen = 0; // 十进制转二进制 void dtob(){ indexlen = 0; int len = (int)strlen(s); ...
杨德胜
2021年3月14日 14:38
P1176 解题思路分享
P1176
回复 0
|
赞 1
|
浏览 10.0k
while True: try: print(int(bin(int(input())).replace('0b','')[-1::-1],2)) except: break
浪到开花
2021年3月1日 18:06
求大佬帮忙看看哪里错了,感觉没错啊
P1176
回复 0
|
赞 0
|
浏览 9.2k
#include <stdio.h> #include<string.h> int chenger(int num[],int n)//数组代表的大数乘以2的函数,十进制数也是倒序,返回大数的位数 { for (int i =0;i<n;i++) { num[i]=num[i]*2;} for (int i =0;i<n;i++) { &...
1
2
3
题目
十进制和二进制
题解数量
27
发布题解
热门题解
1
十进制和二进制(Py秒了,巨坑:多组测试输入题目没说) 题解:
2
admin发布的参考代码
3
求解为什么就是通过不了,答案错误,哭
4
大家请仔细读题
5
P1176 解题思路分享
6
记得多组输入
7
通不过的可能原因之一
8
懵逼
9
十进制和二进制 题解:C
10
求大佬帮忙看看哪里错了,感觉没错啊