結果

問題 No.642 Two Operations No.1
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-03-06 14:15:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 2,327 ms
コンパイル使用メモリ 73,788 KB
実行使用メモリ 54,352 KB
最終ジャッジ日時 2024-09-18 21:42:47
合計ジャッジ時間 4,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,832 KB
testcase_01 AC 117 ms
54,072 KB
testcase_02 AC 114 ms
54,036 KB
testcase_03 AC 102 ms
52,768 KB
testcase_04 AC 102 ms
52,944 KB
testcase_05 AC 118 ms
53,880 KB
testcase_06 AC 99 ms
52,620 KB
testcase_07 AC 102 ms
52,872 KB
testcase_08 AC 133 ms
53,912 KB
testcase_09 AC 104 ms
52,860 KB
testcase_10 AC 115 ms
53,976 KB
testcase_11 AC 113 ms
53,828 KB
testcase_12 AC 112 ms
53,756 KB
testcase_13 AC 116 ms
54,352 KB
testcase_14 AC 122 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int times = 0;
		while (1 < n) {
			if (n%2 == 1) {n++; times++;}
			else {n/=2; times++;}
		}
		out.println(times);
	}
}
0