Search found 1 match

by Al'
Fri Apr 18, 2014 11:27 pm
Forum: Volume 103 (10300-10399)
Topic: 10324 - Zeros and Ones
Replies: 179
Views: 67330

Re: 10324 - Zeros and Ones

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>

int main()
{
#ifndef ONLINE_JUDGE
freopen("in.txt", "r", stdin);
#endif
char in, last;
int totalQuestions;
int a, b;
int counter = 0;
int number = 1;
int *changes = (int*) malloc(sizeof(int) * 1000020);

while(1 ...

Go to advanced search