結果

問題 No.2426 Select Plus or Minus
ユーザー ochiaigawaochiaigawa
提出日時 2023-08-18 21:08:31
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 200,860 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-28 04:54:57
合計ジャッジ時間 3,253 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
  cin.tie(0); cout.tie(0);
  long long N;
  cin >> N;
  string ans = "";
  while(N > 1) {
    if(N % 2 == 0) {
      N /= 2;
      ans += '/';
    } else {
      long long A = 3 * N + 1;
      long long B = 3 * N - 1;
      while(A % 2 == 0 && B % 2 == 0) {
        A /= 2;
        B /= 2;
      }
      if(A % 2 == 0) {
        ans += '+';
        N = 3 * N + 1;
      } else {
        ans += '-';
        N = 3 * N - 1;
      }
    }
  }
  cout << (int) ans.length() << '\n';
  cout << ans << '\n';
  return 0;
}
0