CodeChef submission 136805 (C) plaintext list. Status: CE, problem SNCK04, contest SNACKDWN. By fancy_coders (fancy_coders), 2009-11-21 23:59:24.
#include<stdio.h> 2 #include<math.h> 3 4 int main() 5 { 6 unsigned long long int n; 7 int t; 9 while(t--) 10 { 12 if(n==1) 14 else 15 { 16 //n*=n; 17 n=((n*n)-((n*n)/log(n))); 19 } 20 } 21 return 0; 22 }
Comments

