結果

問題 No.141 魔法少女コバ
ユーザー jp_stejp_ste
提出日時 2015-03-22 13:20:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 2,105 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,612 KB
最終ジャッジ日時 2024-06-29 00:02:33
合計ジャッジ時間 20,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 112 ms
40,348 KB
testcase_03 AC 113 ms
39,888 KB
testcase_04 AC 125 ms
41,280 KB
testcase_05 AC 112 ms
40,008 KB
testcase_06 AC 123 ms
40,992 KB
testcase_07 AC 126 ms
41,056 KB
testcase_08 AC 130 ms
41,260 KB
testcase_09 AC 126 ms
41,168 KB
testcase_10 AC 128 ms
41,272 KB
testcase_11 AC 118 ms
40,020 KB
testcase_12 AC 127 ms
41,332 KB
testcase_13 AC 124 ms
41,052 KB
testcase_14 AC 112 ms
40,228 KB
testcase_15 AC 118 ms
39,760 KB
testcase_16 AC 127 ms
41,208 KB
testcase_17 AC 110 ms
40,084 KB
testcase_18 AC 127 ms
40,884 KB
testcase_19 AC 114 ms
40,512 KB
testcase_20 AC 124 ms
41,268 KB
testcase_21 AC 124 ms
41,052 KB
testcase_22 AC 114 ms
39,764 KB
testcase_23 AC 129 ms
41,304 KB
testcase_24 AC 127 ms
40,864 KB
testcase_25 AC 127 ms
41,028 KB
testcase_26 AC 114 ms
40,192 KB
testcase_27 AC 115 ms
40,436 KB
testcase_28 AC 128 ms
41,168 KB
testcase_29 AC 127 ms
41,020 KB
testcase_30 AC 128 ms
41,096 KB
testcase_31 AC 121 ms
40,972 KB
testcase_32 AC 129 ms
41,160 KB
testcase_33 AC 124 ms
41,292 KB
testcase_34 AC 123 ms
40,944 KB
testcase_35 AC 126 ms
41,036 KB
testcase_36 AC 125 ms
40,868 KB
testcase_37 AC 128 ms
41,100 KB
testcase_38 AC 115 ms
40,264 KB
testcase_39 AC 117 ms
40,216 KB
testcase_40 AC 112 ms
40,008 KB
testcase_41 AC 128 ms
41,612 KB
testcase_42 AC 127 ms
41,296 KB
testcase_43 AC 129 ms
41,236 KB
testcase_44 AC 126 ms
40,892 KB
testcase_45 AC 127 ms
41,060 KB
testcase_46 AC 125 ms
41,244 KB
testcase_47 AC 126 ms
41,484 KB
testcase_48 AC 129 ms
41,088 KB
testcase_49 AC 128 ms
40,912 KB
testcase_50 AC 128 ms
41,204 KB
testcase_51 AC 114 ms
39,924 KB
testcase_52 AC 128 ms
41,088 KB
testcase_53 AC 116 ms
40,100 KB
testcase_54 AC 111 ms
40,356 KB
testcase_55 AC 116 ms
39,856 KB
testcase_56 AC 124 ms
40,952 KB
testcase_57 AC 129 ms
41,056 KB
testcase_58 AC 129 ms
41,376 KB
testcase_59 AC 126 ms
41,112 KB
testcase_60 AC 125 ms
41,148 KB
testcase_61 AC 128 ms
41,100 KB
testcase_62 AC 122 ms
40,964 KB
testcase_63 AC 125 ms
41,128 KB
testcase_64 AC 124 ms
40,984 KB
testcase_65 WA -
testcase_66 AC 123 ms
41,180 KB
testcase_67 AC 123 ms
41,004 KB
testcase_68 AC 129 ms
41,088 KB
testcase_69 AC 113 ms
40,060 KB
testcase_70 AC 127 ms
41,168 KB
testcase_71 AC 130 ms
41,132 KB
testcase_72 AC 126 ms
41,280 KB
testcase_73 AC 130 ms
41,036 KB
testcase_74 AC 127 ms
41,032 KB
testcase_75 AC 127 ms
41,108 KB
testcase_76 AC 125 ms
40,964 KB
testcase_77 AC 128 ms
41,228 KB
testcase_78 AC 128 ms
41,132 KB
testcase_79 AC 114 ms
40,104 KB
testcase_80 AC 124 ms
41,108 KB
testcase_81 AC 117 ms
40,076 KB
testcase_82 AC 129 ms
40,992 KB
testcase-evil-0.txt AC 644 ms
40,556 KB
testcase-evil-1.txt WA -
testcase-evil-2.txt WA -
testcase-evil-3.txt WA -
testcase-evil-4.txt WA -
testcase-evil-5.txt AC 400 ms
40,960 KB
testcase-evil-6.txt AC 274 ms
41,088 KB
testcase-evil-7.txt WA -
testcase-evil-8.txt AC 281 ms
41,084 KB
testcase-evil-9.txt AC 167 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		
		Scanner sc = new Scanner(System.in);
		int M = sc.nextInt();
		int N = sc.nextInt();
		
		int div = getCommonDivisor(M, N);
		int m = M/=div;
		int n = N/=div;
		int ans = 0;
	
		while(true) {
			if(m==1) break;
			
			if(m>n) {
				m-=n; 
				ans++;
			} else {
				int tmp=m;
				m=n;
				n=tmp;
				ans++;
			}
		}
		
		ans++; 
		ans += (n-1);
		System.out.println(ans);
	}
	
	static int getCommonDivisor(final int a, final int b) {
		
		int nowA = a;
		int nowB = b;
		
		while(true) {
			int tmp = nowB % nowA;
			if(tmp == 0) break;
			
			nowB = nowA;
			nowA = tmp;
		}
		return nowA;
	}
}
0