#include<bits/stdc++.h> usingnamespace std; int ini[8]; int d; voidinit(){ ini[0] = 1; for (int i = 1; i < 8; i ++ ) { ini[i] = ini[i - 1] << 1; // cout << ini[i] << " "; } } intmain(){ string input; cin >> input; input[input.length()] = 0; for(int i = input.length()-1;i >=0;i --) { bool x = input[i] - '0'; // cout << x <<endl; // break; // bool y = input[i+1] - '0'; for(int j = input.length()-1;j > i ;j --) { bool y = input[j] - '0'; x = x ^ y; // cout << x << " = " << x << " ^ " << y << endl; } // x = x ^ y; if(x) { input[i] = '1'; }else{ input[i] = '0'; } } bool xorsum = 0; for(int i = input.length()-1;i > 0 ;i -- ) { input[i] = input[i-1]; xorsum ^= input[i] - '0'; } if(xorsum) { input[0] = '1'; }else{ input[0] = '0'; } // cout << input;
string s = ""; init(); int T = input.length() / 8; for (int k = 1; k <= T; ++ k) { d = 0; for (int j = 8 * (k - 1); j < 8 * k; j ++ ) { char c = input[j]; int x = c - '0'; // cout << x; int m = j - 8*(k-1) + 1; if (x) { d += x*ini[8-m] ; }