結果

問題 No.3658 Darumaka Number 2
コンテスト
ユーザー MM
提出日時 2026-08-30 14:10:19
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 5 ms / 2,000 ms
+ 344µs
コード長 1,444 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,691 ms
コンパイル使用メモリ 386,792 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-30 14:10:31
合計ジャッジ時間 6,984 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 45
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define vec vector
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back 
#define eb emplace_back

using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
const ll mod = 998244353;
using mint = modint998244353;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};
// using Graph = vector<vector<pair<int,ll>>>;
using Graph = vector<vector<int>>;

int main(){
  // input
  string S;
  cin >> S;
  int N = S.size();
  vector<int> ans(N);
  bool can_greedy = 0;
  // solve
  rep(i,N){
    if(can_greedy){
      ans[i] = 5;
      continue;
    }
    
    int x = S[i] - '0';
    if(x >= 5){
      ans[i] = 5;
      if(x > 5)
        can_greedy = 1;
    }
    else if(x == 4){
      ans[i] = 4;
    }
    else{
      ans[i] = 5;
      int pos = i-1;
      while(true){
        if(pos == -1){
          ans[pos+1] = 0;
          break;
        }
        else if(ans[pos] == 4){
          ans[pos] = 5;
          pos--;
        }
        else if(ans[pos] == 5){
          ans[pos] = 4;
          break;
        }
        else assert(false);
      }
      can_greedy = 1;
    }
  }
  
  
  // output
  rep(i,N)
    if(ans[i] != 0) // 頭のゼロは出さない
      cout << ans[i];
  
  cout << endl;
}
0