Dee_code's blog

By Dee_code, history, 6 years ago, In English

include <bits/stdc++.h>

template void scan(T &x) { x = 0; bool neg = 0; register T c = getchar();

if (c == '-') 
    neg = 1, c = getchar(); 

while ((c < 48) || (c > 57)) 
    c = getchar(); 

for ( ; c < 48||c > 57 ; c = getchar()); 

for ( ; c > 47 && c < 58; c = getchar() ) 
    x= (x << 3) + ( x << 1 ) + ( c & 15 ); 

if (neg) x *= -1;

}

template void print(T n) { bool neg = 0;

if (n < 0) 
    n *= -1, neg = 1; 

char snum[65]; 
int i = 0; 
do
{ 
    snum[i++] = n % 10 + '0'; 
    n /= 10; 
} 

while (n); 
--i; 

if (neg) 
    putchar('-'); 

while (i >= 0) 
    putchar(snum[i--]); 

putchar('\n');

}

// Driver Program int main() { int value;

// Taking input 
scan(value); 

// Printing output 
print(value); 
return 0;

}

Full text and comments »

  • Vote: I like it
  • -8
  • Vote: I do not like it

By Dee_code, history, 6 years ago, In English

hey can any one explain me its solutoion? problem link -** https://code.google.com/codejam/contest/4374486/dashboard#s=p1** thanks in advance...****

Full text and comments »

  • Vote: I like it
  • 0
  • Vote: I do not like it