結果

問題 No.442 和と積
ユーザー sggkshiosggkshio
提出日時 2016-11-11 23:17:33
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 702 bytes
コンパイル時間 874 ms
コンパイル使用メモリ 81,444 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-11-25 09:29:09
合計ジャッジ時間 29,438 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _USE_MATH_DEFINES
#include<stdio.h>
#include<string>
#include<iostream>
#include<cctype>
#include<cstdio>
#include<vector>
#include<stack>
#include<queue>
#include <algorithm>
#include<math.h>
#include<set>
#include<map>
#include<iomanip>

//#include<bits/stdc++.h>



using namespace std;

double gcd(double m,double n )
{
	// 引数に0がある場合は0を返す
	if ( ( 0 == m ) || ( 0 == n ) )
		return 0;
	
	// ユークリッドの方法
	while( m != n )
	{
		if ( m > n ) m = m - n;
		else         n = n - m;
	}
	return m;
}//gcd


int main() {

	double a,b;
	cin>>a>>b;
	if(a==1||b==1)cout<<1<<endl;
	else if(a==b)cout<<a<<endl;
	else cout<<gcd(a+b,a*b)<<endl;
	
	
	return 0;
}

	
0