結果

問題 No.141 魔法少女コバ
ユーザー kenkooookenkoooo
提出日時 2015-03-14 03:16:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,181 ms / 5,000 ms
コード長 1,002 bytes
コンパイル時間 1,922 ms
コンパイル使用メモリ 77,216 KB
実行使用メモリ 37,352 KB
最終ジャッジ日時 2024-06-28 22:52:26
合計ジャッジ時間 14,756 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,604 KB
testcase_01 AC 1,181 ms
37,280 KB
testcase_02 AC 1,169 ms
37,352 KB
testcase_03 AC 51 ms
36,440 KB
testcase_04 AC 50 ms
36,640 KB
testcase_05 AC 51 ms
36,656 KB
testcase_06 AC 51 ms
36,292 KB
testcase_07 AC 51 ms
36,536 KB
testcase_08 AC 51 ms
36,168 KB
testcase_09 AC 53 ms
36,748 KB
testcase_10 AC 51 ms
36,716 KB
testcase_11 AC 50 ms
36,172 KB
testcase_12 AC 52 ms
36,580 KB
testcase_13 AC 50 ms
36,660 KB
testcase_14 AC 50 ms
36,664 KB
testcase_15 AC 50 ms
36,488 KB
testcase_16 AC 50 ms
36,572 KB
testcase_17 AC 53 ms
36,640 KB
testcase_18 AC 51 ms
36,752 KB
testcase_19 AC 50 ms
36,516 KB
testcase_20 AC 51 ms
36,672 KB
testcase_21 AC 51 ms
36,292 KB
testcase_22 AC 52 ms
36,728 KB
testcase_23 AC 50 ms
36,664 KB
testcase_24 AC 51 ms
36,584 KB
testcase_25 AC 51 ms
36,568 KB
testcase_26 AC 51 ms
36,660 KB
testcase_27 AC 50 ms
36,656 KB
testcase_28 AC 50 ms
36,708 KB
testcase_29 AC 50 ms
36,300 KB
testcase_30 AC 50 ms
36,684 KB
testcase_31 AC 50 ms
36,744 KB
testcase_32 AC 50 ms
36,748 KB
testcase_33 AC 50 ms
36,400 KB
testcase_34 AC 50 ms
36,300 KB
testcase_35 AC 50 ms
36,488 KB
testcase_36 AC 50 ms
36,420 KB
testcase_37 AC 50 ms
36,440 KB
testcase_38 AC 52 ms
36,712 KB
testcase_39 AC 51 ms
36,656 KB
testcase_40 AC 50 ms
36,440 KB
testcase_41 AC 51 ms
36,748 KB
testcase_42 AC 52 ms
36,556 KB
testcase_43 AC 52 ms
36,664 KB
testcase_44 AC 52 ms
36,180 KB
testcase_45 AC 50 ms
36,556 KB
testcase_46 AC 51 ms
36,508 KB
testcase_47 AC 50 ms
36,172 KB
testcase_48 AC 51 ms
36,428 KB
testcase_49 AC 50 ms
36,720 KB
testcase_50 AC 51 ms
36,160 KB
testcase_51 AC 51 ms
36,616 KB
testcase_52 AC 51 ms
36,292 KB
testcase_53 AC 52 ms
36,528 KB
testcase_54 AC 50 ms
36,160 KB
testcase_55 AC 51 ms
36,640 KB
testcase_56 AC 51 ms
36,792 KB
testcase_57 AC 51 ms
36,752 KB
testcase_58 AC 52 ms
36,180 KB
testcase_59 AC 52 ms
36,784 KB
testcase_60 AC 52 ms
36,664 KB
testcase_61 AC 51 ms
36,540 KB
testcase_62 AC 51 ms
36,420 KB
testcase_63 AC 51 ms
36,584 KB
testcase_64 AC 51 ms
36,172 KB
testcase_65 AC 50 ms
36,528 KB
testcase_66 AC 51 ms
36,748 KB
testcase_67 AC 49 ms
36,748 KB
testcase_68 AC 51 ms
36,428 KB
testcase_69 AC 50 ms
36,552 KB
testcase_70 AC 50 ms
36,580 KB
testcase_71 AC 50 ms
36,580 KB
testcase_72 AC 53 ms
36,308 KB
testcase_73 AC 52 ms
36,360 KB
testcase_74 AC 51 ms
36,428 KB
testcase_75 AC 50 ms
36,556 KB
testcase_76 AC 50 ms
36,648 KB
testcase_77 AC 50 ms
36,488 KB
testcase_78 AC 52 ms
36,284 KB
testcase_79 AC 51 ms
36,272 KB
testcase_80 AC 53 ms
36,640 KB
testcase_81 AC 51 ms
36,440 KB
testcase_82 AC 51 ms
36,624 KB
testcase-evil-0.txt AC 594 ms
37,268 KB
testcase-evil-1.txt AC 400 ms
37,432 KB
testcase-evil-2.txt AC 153 ms
37,256 KB
testcase-evil-3.txt AC 244 ms
37,304 KB
testcase-evil-4.txt AC 829 ms
37,268 KB
testcase-evil-5.txt AC 334 ms
37,348 KB
testcase-evil-6.txt AC 206 ms
37,176 KB
testcase-evil-7.txt AC 630 ms
37,056 KB
testcase-evil-8.txt AC 219 ms
37,284 KB
testcase-evil-9.txt AC 107 ms
37,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;

public class Main {

	public static void main(String[] args) {
		int M = nextInt();
		int N = nextInt();
		int gcd = gcd(M, N);
		M /= gcd;
		N /= gcd;

		int magic = 0;
		while (N != M || N != 1) {
			if (M < N) {
				int tmp = M;
				M = N;
				N = tmp;
			} else {
				M -= N;
			}
			magic++;
		}
		System.out.println(magic);

	}

	static int gcd(int a, int b) {
		// b=0ならaを最大公約数として終了
		if (b == 0) {
			return a;
		} else {
			// a÷bのあまりをb、元のbをaとして2.にもどる
			return gcd(b, a % b);
		}
	}

	static int nextInt() {
		int c;
		try {
			c = System.in.read();
			while (c != '-' && (c < '0' || c > '9'))
				c = System.in.read();
			if (c == '-')
				return -nextInt();
			int res = 0;
			while (c >= '0' && c <= '9') {
				res = res * 10 + c - '0';
				c = System.in.read();
			}
			return res;
		} catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		return -1;
	}

}
0