Hdu1042 Big Data factorial

Source: Internet
Author: User
# Include <cstdio> # include <string. h> using namespace STD; const int maxn = 50000; int f [maxn]; int main () {int I, j, N; while (scanf ("% d ", & N )! = EOF) {memset (F, 0, sizeof (f); F [0] = 1; // first set the single position to 1 for (I = 2; I <= N; I ++) // multiply from 2 to n {int C = 0; // the number of reserved incoming bits for (j = 0; j <maxn; j ++) // traverse the f Array {int S = f [J] * I + C; // calculate the value of each bit f [J] = S % 10; // update the value of the array after each multiplication c = s/10; // C reserved incoming bits} For (j = maxn-1; j> = 0; j --) // ignore leading 0 if (F [J]) break; for (I = J; I> = 0; I --) // output printf ("% d ", f [I]); printf ("\ n");} return 0 ;}

Open the array by 50000, and feel that you can do this only when you are truly integrated into the question.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.