結果
| 問題 |
No.887 Collatz
|
| コンテスト | |
| ユーザー |
kiefer_von_maus
|
| 提出日時 | 2019-12-17 18:00:40 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 384 bytes |
| コンパイル時間 | 1,413 ms |
| コンパイル使用メモリ | 166,980 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-04 02:44:33 |
| 合計ジャッジ時間 | 2,348 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 28 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
cin.tie(0);
ios::sync_with_stdio(false);
int n;
cin >> n;
int count = 0;
int maxnum = n;
while(n != 1) {
if(n % 2 == 1) {
n = 3 * n + 1;
count++;
maxnum = max(maxnum, n);
}else {
n = n / 2;
count++;
maxnum = max(maxnum, n);
}
}
cout << count << endl;
cout << maxnum << endl;
}
kiefer_von_maus