結果

問題 No.442 和と積
ユーザー aaaa3215aaaa3215
提出日時 2018-05-23 17:54:51
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 576 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 28,192 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-11 01:48:01
合計ジャッジ時間 1,080 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 0 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 0 ms
4,380 KB
testcase_08 WA -
testcase_09 AC 0 ms
4,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

 long long int gcd(long long int C, long long int D) {
	 double tmp;
	 double div1;
	 long long int div2, r;
	
	 div1 = C / D;
	 div2 = div1;
	 r = C % D;

	 while (r != 0) {
		 div1 /= r;
		 div2 = div1;
		 r = div2 % r;
		 if (div2 == 0) {
			 return 1;
		 }
	 }

	 return div2;
}

int main(void) {
	long long int A, B;
	long long int a, b, ans;

	scanf("%lld", &A);
	scanf("%lld", &B);
	
	a = gcd(A + B, A);
	b = gcd(A + B, B);

	if (a*b >= A + B) {
		ans = gcd(a*b, A + B);
	}
	else {
		ans = gcd(A + B, a*b);
	}

	printf("%lld\n", ans);
	
	return 0;

}
0