結果
| 問題 |
No.642 Two Operations No.1
|
| コンテスト | |
| ユーザー |
mikan765
|
| 提出日時 | 2018-02-07 21:32:52 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 578 bytes |
| コンパイル時間 | 604 ms |
| コンパイル使用メモリ | 72,964 KB |
| 最終ジャッジ日時 | 2025-01-05 08:10:47 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 4 RE * 11 |
ソースコード
#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;
}
}
}
mikan765