結果

問題 No.642 Two Operations No.1
ユーザー mikan765mikan765
提出日時 2018-02-07 21:32:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 578 bytes
コンパイル時間 823 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-19 03:32:41
合計ジャッジ時間 1,428 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <string>
#include <list>
#include <vector>
#include <algorithm>

#define rep(i,n) for(int i = 0;i < n;i++)
#define REP(i,n,k) for(int i = n;i < k;i++)
#define P(p) cout << (p) << endl;//print
typedef long long ll;
using namespace std;


int main(){
    cin.tie(0);
   	ios::sync_with_stdio(false);
    
    int n;
    cin >> n;
    int ans = 0;
    while (true) {
        if(n==1){
            return ans;
        }
        if(n%2 == 1){
            n += 1;
            ans++;
        }else{
            n = n/2;
        }
    }
}
0