結果

問題 No.642 Two Operations No.1
ユーザー uafr_csuafr_cs
提出日時 2018-02-02 21:28:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 383 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 74,328 KB
実行使用メモリ 54,600 KB
最終ジャッジ日時 2024-06-10 01:08:45
合計ジャッジ時間 4,937 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
53,956 KB
testcase_01 AC 144 ms
54,068 KB
testcase_02 AC 128 ms
52,920 KB
testcase_03 AC 134 ms
54,600 KB
testcase_04 AC 138 ms
53,972 KB
testcase_05 AC 137 ms
54,224 KB
testcase_06 AC 139 ms
54,052 KB
testcase_07 AC 135 ms
54,216 KB
testcase_08 AC 137 ms
53,896 KB
testcase_09 AC 131 ms
53,808 KB
testcase_10 AC 133 ms
54,028 KB
testcase_11 AC 132 ms
54,180 KB
testcase_12 AC 139 ms
54,160 KB
testcase_13 AC 133 ms
53,704 KB
testcase_14 AC 140 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final long N = sc.nextLong();
		
		int count = 0;
		long x = N;
		while(x != 1){
			if(x % 2 == 0){
				x /= 2; count++;
			}else{
				x++; count++;
			}
		}
		
		System.out.println(count);
	}
}
0