結果

問題 No.141 魔法少女コバ
ユーザー tutuztutuz
提出日時 2018-09-14 22:20:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 108 ms / 5,000 ms
コード長 410 bytes
コンパイル時間 2,360 ms
コンパイル使用メモリ 73,532 KB
実行使用メモリ 41,480 KB
最終ジャッジ日時 2024-07-06 11:18:04
合計ジャッジ時間 13,243 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
41,072 KB
testcase_01 AC 92 ms
40,432 KB
testcase_02 AC 102 ms
41,256 KB
testcase_03 AC 94 ms
40,532 KB
testcase_04 AC 103 ms
40,968 KB
testcase_05 AC 103 ms
40,924 KB
testcase_06 AC 102 ms
40,940 KB
testcase_07 AC 91 ms
40,148 KB
testcase_08 AC 100 ms
40,924 KB
testcase_09 AC 100 ms
41,040 KB
testcase_10 AC 99 ms
41,300 KB
testcase_11 AC 101 ms
40,916 KB
testcase_12 AC 92 ms
40,156 KB
testcase_13 AC 100 ms
41,312 KB
testcase_14 AC 101 ms
41,268 KB
testcase_15 AC 99 ms
41,092 KB
testcase_16 AC 100 ms
41,224 KB
testcase_17 AC 102 ms
41,304 KB
testcase_18 AC 89 ms
39,844 KB
testcase_19 AC 100 ms
40,948 KB
testcase_20 AC 102 ms
40,912 KB
testcase_21 AC 91 ms
40,264 KB
testcase_22 AC 92 ms
40,356 KB
testcase_23 AC 89 ms
39,852 KB
testcase_24 AC 100 ms
41,124 KB
testcase_25 AC 101 ms
41,272 KB
testcase_26 AC 92 ms
40,228 KB
testcase_27 AC 101 ms
40,964 KB
testcase_28 AC 91 ms
40,524 KB
testcase_29 AC 99 ms
41,400 KB
testcase_30 AC 86 ms
39,672 KB
testcase_31 AC 101 ms
40,920 KB
testcase_32 AC 92 ms
40,204 KB
testcase_33 AC 100 ms
41,156 KB
testcase_34 AC 100 ms
41,396 KB
testcase_35 AC 101 ms
41,068 KB
testcase_36 AC 86 ms
39,736 KB
testcase_37 AC 99 ms
41,480 KB
testcase_38 AC 99 ms
40,912 KB
testcase_39 AC 95 ms
40,524 KB
testcase_40 AC 89 ms
39,824 KB
testcase_41 AC 102 ms
41,032 KB
testcase_42 AC 101 ms
40,900 KB
testcase_43 AC 90 ms
40,036 KB
testcase_44 AC 102 ms
40,924 KB
testcase_45 AC 99 ms
41,104 KB
testcase_46 AC 101 ms
41,208 KB
testcase_47 AC 100 ms
41,008 KB
testcase_48 AC 108 ms
41,240 KB
testcase_49 AC 99 ms
40,896 KB
testcase_50 AC 101 ms
40,904 KB
testcase_51 AC 100 ms
41,252 KB
testcase_52 AC 87 ms
39,896 KB
testcase_53 AC 101 ms
41,108 KB
testcase_54 AC 102 ms
41,240 KB
testcase_55 AC 100 ms
41,044 KB
testcase_56 AC 89 ms
39,920 KB
testcase_57 AC 99 ms
41,160 KB
testcase_58 AC 93 ms
40,008 KB
testcase_59 AC 101 ms
41,332 KB
testcase_60 AC 100 ms
41,052 KB
testcase_61 AC 100 ms
41,268 KB
testcase_62 AC 93 ms
40,188 KB
testcase_63 AC 100 ms
40,924 KB
testcase_64 AC 98 ms
41,232 KB
testcase_65 AC 99 ms
41,088 KB
testcase_66 AC 91 ms
40,296 KB
testcase_67 AC 99 ms
41,028 KB
testcase_68 AC 100 ms
40,956 KB
testcase_69 AC 99 ms
41,148 KB
testcase_70 AC 103 ms
41,120 KB
testcase_71 AC 101 ms
41,304 KB
testcase_72 AC 101 ms
41,100 KB
testcase_73 AC 100 ms
41,268 KB
testcase_74 AC 100 ms
41,140 KB
testcase_75 AC 98 ms
41,104 KB
testcase_76 AC 101 ms
40,884 KB
testcase_77 AC 102 ms
40,928 KB
testcase_78 AC 100 ms
41,148 KB
testcase_79 AC 100 ms
40,944 KB
testcase_80 AC 93 ms
40,320 KB
testcase_81 AC 101 ms
41,068 KB
testcase_82 AC 99 ms
40,996 KB
testcase-evil-0.txt AC 100 ms
41,536 KB
testcase-evil-1.txt AC 88 ms
40,376 KB
testcase-evil-2.txt AC 97 ms
41,252 KB
testcase-evil-3.txt AC 99 ms
41,188 KB
testcase-evil-4.txt AC 90 ms
40,204 KB
testcase-evil-5.txt AC 98 ms
41,256 KB
testcase-evil-6.txt AC 99 ms
41,000 KB
testcase-evil-7.txt AC 100 ms
41,108 KB
testcase-evil-8.txt AC 99 ms
41,076 KB
testcase-evil-9.txt AC 101 ms
40,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {

		Scanner in = new Scanner(System.in);

		int m = in.nextInt(), n = in.nextInt();
		long s = 0;

		while (m != n) {

			if (m > n) {
				s += m/n;
				m %= n;
				if (m == 0) {
					s--;
					break;
				}
			} else {
				int t = m;
				m = n;
				n = t;
				s++;
			}
		}
		System.out.println(s);

		in.close();
	}

}
0