結果
問題 | No.887 Collatz |
ユーザー |
![]() |
提出日時 | 2019-09-20 21:52:17 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 351 bytes |
コンパイル時間 | 1,561 ms |
コンパイル使用メモリ | 165,508 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-14 17:17:21 |
合計ジャッジ時間 | 2,593 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N; cin >> N; int count = 0; int saidai = N; while( N > 1 ){ if( N%2 == 1 ){ //奇数だったら N = 3*N + 1; }else{ //偶数だったら N /= 2; } if( N > saidai ) saidai = N; count++; } cout << count << endl; cout << saidai << endl; }