Search found 1 match

by Acetik
Thu Mar 18, 2004 10:52 pm
Forum: Volume 6 (600-699)
Topic: 623 - 500!
Replies: 187
Views: 71545

623 : TLE

[c]/* @JUDGE_ID: 43187ZH 623 C "NADA" */
#include <stdio.h>
#define TAILLE_TAB 5000

void toTab( int nb , int* tab)
{
unsigned i;

for( i = 0 ; nb >= 1 ; i++ )
{
tab = nb % 10;
nb /= 10;
}

}

void initialiser( int* tab )
{
unsigned i;
for( i = 0 ; i < TAILLE_TAB ; i++ )
tab = -1;
}

void ...

Go to advanced search