結果
| 問題 | No.3157 Nabeatsu | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-05-23 20:38:07 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 1,572 bytes | 
| コンパイル時間 | 3,882 ms | 
| コンパイル使用メモリ | 253,576 KB | 
| 実行使用メモリ | 7,844 KB | 
| 最終ジャッジ日時 | 2025-05-23 20:38:15 | 
| 合計ジャッジ時間 | 6,279 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 43 WA * 2 | 
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using ull = unsigned long long;
using Graph = vector<vector<int>>;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()
#define NP next_permutation
const int INF32 = 2e9;
const ll INF64 = 2e18;
const ll mod = 998244353;
// const ll mod = 1e9 + 7;
template<typename T> bool chmin(T &a, T b){if(a > b){a = b; return true;} return false;}
template<typename T> bool chmax(T &a, T b){if(a < b){a = b; return true;} return false;}
 
void cincout() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
}
 
int main() {
    cincout();
 
    string S;
    cin >> S;
    int id = -1;
    for (int i = 0; i < S.size(); i++) {
        if (S[i] == '3') {
            id = i;
            break;
        }
    }
    if (id != -1) {
        S[id] = '2';
        for (int i = id + 1; i < S.size(); i++) S[i] = '9';
    }
    int sum = 0;
    for (char c : S) sum += (c - '0');
    if (sum % 3 != 0) {
        cout << S << endl;
        return 0;
    }
    for (int i = S.size() - 1; i >= 0; i--) {
        int x = S[i] - '0';
        x -= 1;
        if (x == 3) x--;
        if (x < 0) continue;
        else {
            S[i] = (char)(x + '0');
            for (int j = i; j <= S.size(); j++) {
                while (S[j] + 3 < 10) S[j] += 3; 
            }
            break;
        }
    }
    cout << S << endl;
}
            
            
            
        