結果
問題 | No.642 Two Operations No.1 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-02-02 21:21:57 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 346 bytes |
コンパイル時間 | 737 ms |
コンパイル使用メモリ | 71,904 KB |
最終ジャッジ日時 | 2025-01-05 08:05:08 |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 15 |
ソースコード
#include<algorithm> #include<iostream> #include<vector> using namespace std; typedef long long lint; typedef vector<int>vi; typedef pair<int,int>pii; #define rep(i,n)for(int i=0;i<(int)(n);++i) int main(){ lint n; cin>>n; int cnt=0; while(n>1){ if(n%2==1){ n++; cnt++; } n/=2; cnt++; } cout<<cnt<<endl; }