結果

問題 No.642 Two Operations No.1
ユーザー denderaKawazu
提出日時 2018-02-13 20:08:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 980 bytes
コンパイル時間 2,196 ms
コンパイル使用メモリ 74,988 KB
実行使用メモリ 41,952 KB
最終ジャッジ日時 2024-11-30 08:22:33
合計ジャッジ時間 5,171 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Task solver = new Task();
        solver.solve(1, in, out);
        out.close();
    }

    static class Task {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            int n = in.nextInt();
            int count = 0;
            while (n != 1) {
                if ((n & 1) == 1) {
                    n++;
                } else {
                    n /= 2;
                }
                count++;
            }
            out.println(count);
        }

    }
}

0