ACM 10856 Q10856: Recover Factorial
作法 : DP注意 : N=0 時 請輸出 0! 這個答案 ※ 這讓我吃好多WA on UVA程式碼 1 : 記憶體過大程式碼 2 : 利用二分搜尋 來減少記憶體量 來加快速度/***********************************************************/#include<stdio.h>#include<stdlib.h>#include<math.h>int n;short in...