結果

問題 No.141 魔法少女コバ
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-07-02 10:08:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 538 bytes
コンパイル時間 4,348 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-01 01:28:55
合計ジャッジ時間 19,917 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,800 KB
testcase_01 AC 136 ms
54,032 KB
testcase_02 AC 137 ms
54,156 KB
testcase_03 AC 137 ms
54,000 KB
testcase_04 AC 139 ms
54,032 KB
testcase_05 AC 136 ms
53,860 KB
testcase_06 AC 138 ms
54,040 KB
testcase_07 AC 136 ms
53,968 KB
testcase_08 AC 135 ms
54,224 KB
testcase_09 AC 136 ms
53,992 KB
testcase_10 AC 135 ms
53,784 KB
testcase_11 AC 137 ms
54,088 KB
testcase_12 AC 137 ms
54,144 KB
testcase_13 AC 140 ms
54,008 KB
testcase_14 AC 138 ms
53,944 KB
testcase_15 AC 132 ms
54,244 KB
testcase_16 AC 133 ms
54,184 KB
testcase_17 AC 133 ms
54,032 KB
testcase_18 AC 135 ms
54,236 KB
testcase_19 AC 134 ms
53,996 KB
testcase_20 AC 133 ms
54,132 KB
testcase_21 AC 134 ms
54,148 KB
testcase_22 AC 132 ms
54,168 KB
testcase_23 AC 133 ms
53,840 KB
testcase_24 AC 136 ms
54,084 KB
testcase_25 AC 135 ms
54,084 KB
testcase_26 AC 135 ms
53,968 KB
testcase_27 AC 136 ms
54,016 KB
testcase_28 AC 135 ms
53,760 KB
testcase_29 AC 135 ms
54,196 KB
testcase_30 AC 132 ms
54,104 KB
testcase_31 AC 133 ms
54,060 KB
testcase_32 AC 134 ms
54,008 KB
testcase_33 AC 134 ms
53,952 KB
testcase_34 AC 135 ms
54,004 KB
testcase_35 AC 135 ms
54,172 KB
testcase_36 AC 132 ms
54,196 KB
testcase_37 AC 136 ms
53,848 KB
testcase_38 AC 134 ms
54,168 KB
testcase_39 AC 132 ms
53,964 KB
testcase_40 AC 133 ms
54,200 KB
testcase_41 AC 133 ms
54,008 KB
testcase_42 AC 134 ms
54,236 KB
testcase_43 AC 133 ms
53,932 KB
testcase_44 AC 136 ms
54,144 KB
testcase_45 AC 135 ms
54,080 KB
testcase_46 AC 130 ms
54,048 KB
testcase_47 AC 134 ms
53,964 KB
testcase_48 AC 135 ms
54,132 KB
testcase_49 AC 133 ms
53,848 KB
testcase_50 AC 134 ms
54,304 KB
testcase_51 AC 132 ms
54,088 KB
testcase_52 AC 134 ms
53,708 KB
testcase_53 AC 134 ms
54,176 KB
testcase_54 AC 134 ms
53,708 KB
testcase_55 AC 133 ms
54,212 KB
testcase_56 AC 133 ms
54,028 KB
testcase_57 AC 133 ms
54,220 KB
testcase_58 AC 134 ms
54,180 KB
testcase_59 AC 132 ms
54,072 KB
testcase_60 AC 136 ms
54,120 KB
testcase_61 AC 131 ms
54,188 KB
testcase_62 AC 133 ms
53,848 KB
testcase_63 AC 132 ms
54,168 KB
testcase_64 AC 134 ms
54,200 KB
testcase_65 AC 134 ms
53,916 KB
testcase_66 AC 135 ms
54,096 KB
testcase_67 AC 133 ms
53,988 KB
testcase_68 AC 132 ms
53,804 KB
testcase_69 AC 134 ms
53,864 KB
testcase_70 AC 135 ms
53,784 KB
testcase_71 AC 133 ms
54,048 KB
testcase_72 AC 132 ms
54,216 KB
testcase_73 AC 134 ms
53,888 KB
testcase_74 AC 133 ms
54,256 KB
testcase_75 AC 117 ms
52,540 KB
testcase_76 AC 131 ms
53,832 KB
testcase_77 AC 137 ms
53,968 KB
testcase_78 AC 134 ms
54,044 KB
testcase_79 AC 134 ms
53,920 KB
testcase_80 AC 133 ms
54,224 KB
testcase_81 AC 133 ms
53,800 KB
testcase_82 AC 134 ms
54,192 KB
testcase-evil-0.txt AC 410 ms
53,888 KB
testcase-evil-1.txt AC 135 ms
53,888 KB
testcase-evil-2.txt AC 133 ms
54,008 KB
testcase-evil-3.txt AC 133 ms
53,924 KB
testcase-evil-4.txt AC 131 ms
53,980 KB
testcase-evil-5.txt AC 260 ms
53,196 KB
testcase-evil-6.txt AC 208 ms
53,820 KB
testcase-evil-7.txt AC 134 ms
53,976 KB
testcase-evil-8.txt AC 218 ms
54,168 KB
testcase-evil-9.txt AC 159 ms
54,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No141{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int m = sc.nextInt();
		int n = sc.nextInt();
		int x = m, y = n, tmp;
		while((tmp = x%y) != 0){
			x = y;
			y = tmp;
		}
		if(y > 1){
			m /= y;
			n /= y;
		}

		int count = 0;
		while(m != n){
			if(n == 1){
				count += m-1;
				break;
			}
			if(m > n){
				m -= n;
			}
			else{
				int l = m;
				m = n;
				n = l;
			}
			// System.out.println(m+"/"+n);
			count++;
		}
		System.out.println(count);
	}
}
0