「CFgym100514I」Peace of AmericanPie
题解
八个数字一组二进制
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#include<iostream> #include<cstdio> #include<algorithm> #include<cmath> #include<cstdlib> #include<cstring> using namespace std; string a; int main() { cin>>a; int t=a.length(); for(int i=1;i<=t/8;i++) { int tot=0; for(int j=0;j<8;j++) { tot+=(a[(i-1)*8+j]-'0')*(1<<(7-j)); } tot+=i; printf("%c",tot-i); } return 0; } |
Subscribe