結果

問題 No.642 Two Operations No.1
ユーザー Daigo HIROOKADaigo HIROOKA
提出日時 2018-06-19 00:14:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 3,265 ms
コンパイル使用メモリ 74,112 KB
実行使用メモリ 41,648 KB
最終ジャッジ日時 2024-06-30 17:08:45
合計ジャッジ時間 5,873 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
39,980 KB
testcase_01 AC 130 ms
41,408 KB
testcase_02 AC 127 ms
41,356 KB
testcase_03 AC 113 ms
40,356 KB
testcase_04 AC 126 ms
41,484 KB
testcase_05 AC 122 ms
41,104 KB
testcase_06 AC 109 ms
40,212 KB
testcase_07 AC 125 ms
40,928 KB
testcase_08 AC 124 ms
41,168 KB
testcase_09 AC 124 ms
41,172 KB
testcase_10 AC 116 ms
41,112 KB
testcase_11 AC 125 ms
41,128 KB
testcase_12 AC 128 ms
41,344 KB
testcase_13 AC 129 ms
41,296 KB
testcase_14 AC 128 ms
41,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class No001{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);

		int N = sc.nextInt();
		int count = 0;
		while(true){
			if(N == 1) break;
			
			if(N%2 == 0){
				N /= 2;
			}else{
				N++;
			}
			count++;
		}
		System.out.println(count);
	}
}
0