結果

問題 No.25 有限小数
ユーザー TLwiegehttTLwiegehtt
提出日時 2015-07-15 06:49:38
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 543 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 8,224 KB
最終ジャッジ日時 2024-07-08 07:39:37
合計ジャッジ時間 6,990 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 0 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 0 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 0 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,948 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 0 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 0 ms
6,944 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:19:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   19 |         scanf("%lld", &n);
      |         ^~~~~~~~~~~~~~~~~
main.c:20:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |         scanf("%lld", &m);
      |         ^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

long long int gcd( long long int a, long long int b){
	if(b == 0){
		return a;
	}
	
	if(a > b){
		return gcd(b,a%b);
	}else{
		return gcd(a,b%a);
	}
}

int main(void){
	long long int n,m,g, tmp;
	
	
	scanf("%lld", &n);
	scanf("%lld", &m);
	g = gcd(n,m);
	
	n /= g;
	m /= g;
	tmp = m;
	
	while( tmp%2 == 0 ){ tmp/=2;}
	while( tmp%5 == 0 ){ tmp/=5;}
	if(tmp == 1){
		while(n%m != 0){
			n = n%m;
			n *= 10;
		}
		n /= m;
		while(n%10==0){n/=10;}
		n = n%10;
		printf("%lld\n", n);
	}else{
		printf("-1\n");
	}
	
	return 0;
}
0