HDU 2522は循環の小数の問題を求めます

1762 ワード

A simple problem
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 3760 Accepted Submission(s): 1405
Problem Description
Ztyは数学の問題に夢中だ.ある日、yifenfeiは数学の問題を出して彼を倒すのが難しいと思って、彼に1/nに答えさせました.でもZtyは答えられない^^.みんなでプログラミングして彼を助けてください.
Input
1行目の整数Tは、テストグループ数を表す.後のT行は、行毎に1つの整数n(1<=|n|<=10^5)である.
Output
出力1/n.(循環小数である、最初の循環節のみ出力).
Sample Input

   
   
   
   
4 2 3 7 168

Sample Output

   
   
   
   
0.5 0.3 0.142857 0.005952380

Author
yifenfei
Source
HDU 2008-10 Programming Contest 
//なぜか百万まで走る さもないとruntime error
#include <iostream>
#include <cstdio>
#include <string.h>
#include <string>
using namespace std;
const int N=1000000+10;
bool book[N];
int len,a[N];
bool flag;
int main(){
	int t,n,i;
	scanf("%d",&t);
	while(t--){
	scanf("%d",&n);
	if(n<0)
	 {
	 	n=n*(-1);
	 	flag=0;
	 }
	 else
	   flag=1;
	   
	   if(n==1)
	   {
	   	if(flag)
	   	 printf("1
"); else printf("-1
"); } len=0; memset(book,0,sizeof(book)); int now=1; while(now!=0&&book[now]==0){ book[now]=1; if(now>=n){ a[len++]=now/n; now%=n; } else a[len++]=0; now*=10; } if(flag) printf("0."); else printf("-0."); for(i=1;i<len;i++) printf("%d",a[i]); printf("
"); } return 0; }