結果
| 問題 |
No.642 Two Operations No.1
|
| コンテスト | |
| ユーザー |
zzzurumuke
|
| 提出日時 | 2018-02-03 16:35:11 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 275 bytes |
| コンパイル時間 | 423 ms |
| コンパイル使用メモリ | 59,904 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-11 15:21:25 |
| 合計ジャッジ時間 | 959 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 15 |
ソースコード
#include <iostream>
#include <string>
#include <math.h>
#include <algorithm>
#include <utility>
using namespace std;
int N, ans=0;
int main(){
cin >> N;
while (N != 1){
if(N % 2 == 0){
N /= 2; ans++;
} else {
N += 1; ans++;
}
}
cout << ans << endl;
}
zzzurumuke