Result [link]

WA

Code [DL]

using System.Console;
public class Test
{
	public static Main() : void
	{
		def f = ReadLine();
		mutable x = 0;
		mutable y = 1;
		for(mutable i = 99; i >= 0; i--){
			if(f[i] == '1'){
				x = x+y;
			}
			else{
				x = x;
			}
			y *= 2;
		}
		WriteLine(x);
	}
}

stdin

1111000101011111110010110010101010101111011110001011000000010110001011001111010000101000111010100000

stdout

Standard output is empty

stderr

strace