結果

問題 No.642 Two Operations No.1
ユーザー GrenacheGrenache
提出日時 2018-02-02 21:41:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 3,539 ms
コンパイル使用メモリ 79,296 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-06-10 01:12:49
合計ジャッジ時間 5,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
53,076 KB
testcase_01 AC 103 ms
53,120 KB
testcase_02 AC 98 ms
53,032 KB
testcase_03 AC 115 ms
54,176 KB
testcase_04 AC 105 ms
52,884 KB
testcase_05 AC 106 ms
53,276 KB
testcase_06 AC 102 ms
52,816 KB
testcase_07 AC 109 ms
53,016 KB
testcase_08 AC 120 ms
54,208 KB
testcase_09 AC 124 ms
54,224 KB
testcase_10 AC 108 ms
53,248 KB
testcase_11 AC 121 ms
54,152 KB
testcase_12 AC 123 ms
54,060 KB
testcase_13 AC 114 ms
53,808 KB
testcase_14 AC 126 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder642_1 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();

		Map<Long, Integer> dp = new HashMap<>();
		dp.put((long)n, 0);
		Queue<Long> q = new ArrayDeque<>();
		q.add((long)n);
		while (!q.isEmpty()) {
			long e = q.remove();

			if (e == 1) {
				pr.println(dp.get(e));
				return;
			}

			if (e > 1) {
				if (e % 2 == 0 && !dp.containsKey(e / 2)) {
					q.add(e / 2);
					dp.put(e / 2, dp.get(e) + 1);
				}
				if (!dp.containsKey(e + 1)) {
					q.add(e + 1);
					dp.put(e + 1, dp.get(e) + 1);
				}
			}
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0