結果
| 問題 |
No.887 Collatz
|
| コンテスト | |
| ユーザー |
kiefer_von_maus
|
| 提出日時 | 2019-12-17 17:59:04 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 384 bytes |
| コンパイル時間 | 1,537 ms |
| コンパイル使用メモリ | 167,164 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-07-04 02:43:17 |
| 合計ジャッジ時間 | 2,260 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 22 WA * 6 |
ソースコード
#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 = 0;
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