結果

問題 No.141 魔法少女コバ
ユーザー kuuso1kuuso1
提出日時 2015-02-02 00:18:39
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,110 bytes
コンパイル時間 2,505 ms
コンパイル使用メモリ 107,008 KB
実行使用メモリ 27,008 KB
最終ジャッジ日時 2024-06-23 05:56:10
合計ジャッジ時間 15,194 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other TLE * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
 
class TEST{
	static void Main(){
		Sol mySol =new Sol();
		mySol.Solve();
	}
}

class Sol{
	public void Solve(){
		
		long g=gcd(N,M);
		M/=g;N/=g;
		
		long cnt=0;
		while(M!=0){
			if(M>N){
				cnt+=(M/N);
				M%=N;
				continue;
			}else{
				cnt++;
				long tmp=M;M=N;N=tmp;
			}
		}
		Console.WriteLine(cnt-1);
	}
	
	
	public static long gcd(long a,long b){
		return a==0?b:gcd(b%a,a);
	}
	
	long N,M;
	public Sol(){
		var d=rla();
		M=d[0];N=d[1];
	}
	
	static String rs(){return Console.ReadLine();}
	static int ri(){return int.Parse(Console.ReadLine());}
	static long rl(){return long.Parse(Console.ReadLine());}
	static double rd(){return double.Parse(Console.ReadLine());}
	static String[] rsa(){return Console.ReadLine().Split(' ');}
	static int[] ria(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>int.Parse(e));}
	static long[] rla(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>long.Parse(e));}
	static double[] rda(){return Array.ConvertAll(Console.ReadLine().Split(' '),e=>double.Parse(e));}
}
0