結果

問題 No.356 円周上を回る3つの動点の一致
ユーザー kongarishisyamokongarishisyamo
提出日時 2016-04-01 23:46:25
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 482 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 57,180 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 10:06:21
合計ジャッジ時間 101,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,918 ms
5,248 KB
testcase_01 AC 1,903 ms
5,248 KB
testcase_02 AC 1,877 ms
5,248 KB
testcase_03 AC 1,902 ms
5,248 KB
testcase_04 AC 1,912 ms
5,248 KB
testcase_05 AC 1,929 ms
5,248 KB
testcase_06 WA -
testcase_07 AC 1,911 ms
5,248 KB
testcase_08 AC 1,903 ms
5,248 KB
testcase_09 AC 1,908 ms
5,248 KB
testcase_10 AC 1,902 ms
5,248 KB
testcase_11 AC 1,920 ms
5,248 KB
testcase_12 AC 1,913 ms
5,248 KB
testcase_13 AC 1,901 ms
5,248 KB
testcase_14 AC 1,920 ms
5,248 KB
testcase_15 AC 1,900 ms
5,248 KB
testcase_16 AC 1,909 ms
5,248 KB
testcase_17 AC 1,900 ms
5,248 KB
testcase_18 AC 1,950 ms
5,248 KB
testcase_19 AC 1,897 ms
5,248 KB
testcase_20 AC 1,909 ms
5,248 KB
testcase_21 AC 1,922 ms
5,248 KB
testcase_22 AC 1,899 ms
5,248 KB
testcase_23 AC 1,915 ms
5,248 KB
testcase_24 AC 1,922 ms
5,248 KB
testcase_25 AC 1,928 ms
5,248 KB
testcase_26 AC 1,936 ms
5,248 KB
testcase_27 AC 1,939 ms
5,248 KB
testcase_28 AC 1,941 ms
5,248 KB
testcase_29 AC 1,942 ms
5,248 KB
testcase_30 AC 1,924 ms
5,248 KB
testcase_31 AC 1,928 ms
5,248 KB
testcase_32 AC 1,916 ms
5,248 KB
testcase_33 AC 1,915 ms
5,248 KB
testcase_34 AC 1,931 ms
5,248 KB
testcase_35 AC 1,904 ms
5,248 KB
testcase_36 AC 1,932 ms
5,248 KB
testcase_37 AC 1,924 ms
5,248 KB
testcase_38 AC 1,919 ms
5,248 KB
testcase_39 AC 1,912 ms
5,248 KB
testcase_40 AC 1,903 ms
5,248 KB
testcase_41 AC 1,925 ms
5,248 KB
testcase_42 WA -
testcase_43 AC 1,904 ms
5,248 KB
testcase_44 AC 1,946 ms
5,248 KB
testcase_45 AC 1,940 ms
5,248 KB
testcase_46 AC 1,912 ms
5,248 KB
testcase_47 AC 1,936 ms
5,248 KB
testcase_48 AC 1,929 ms
5,248 KB
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>

using namespace std;

long long gcd(long long a,long long b){
	if(a<b) return gcd(b,a);
	if(b!=0) return gcd(b,a%b);
	return a;
}

int main(){

	long long T1,T2,T3;

	cin>>T1>>T2>>T3;

	long long N=gcd(T1,T2);
	long long A=T1*T2/N;
	N=gcd(A,T3);
	A=A*T3/N;

	cout<<A<<"/";

	long long K1=A/T1;
	long long K2=A/T2;
	long long K3=A/T3;

	for(long long i=100000000;i>=1;i--){
		if(K1%i==K2%i&&K2%i==K3%i){
			cout<<i<<endl;
			break;
		}
	}

}

0