結果

問題 No.643 Two Operations No.2
ユーザー 41Toame41Toame
提出日時 2018-04-25 19:14:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 3,413 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 41,188 KB
最終ジャッジ日時 2024-06-27 21:04:35
合計ジャッジ時間 5,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,000 KB
testcase_01 AC 131 ms
40,944 KB
testcase_02 AC 115 ms
39,948 KB
testcase_03 AC 128 ms
41,044 KB
testcase_04 AC 129 ms
41,188 KB
testcase_05 AC 128 ms
40,968 KB
testcase_06 AC 128 ms
40,968 KB
testcase_07 AC 125 ms
41,024 KB
testcase_08 AC 125 ms
41,052 KB
testcase_09 AC 115 ms
39,912 KB
testcase_10 AC 129 ms
41,164 KB
testcase_11 AC 126 ms
40,872 KB
testcase_12 AC 118 ms
40,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class T03 {

    static int opera(int c, int X, int Y) {
        if (c == 12) return 1000;
        else if (X == Y) return c;
        else {
            return Math.min(opera(c + 1, Y, X), opera(c + 1, X + Y, X - Y));
        }
    }
            
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int X = sc.nextInt();
        int Y = sc.nextInt();

        int ans = opera(0, X, Y);
        if (ans == 1000) ans = -1;
        System.out.println(ans);
    }
}

        
0