結果
| 問題 |
No.3157 Nabeatsu
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-05-23 19:27:13 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,489 bytes |
| コンパイル時間 | 5,216 ms |
| コンパイル使用メモリ | 335,064 KB |
| 実行使用メモリ | 9,192 KB |
| 最終ジャッジ日時 | 2025-05-23 19:27:25 |
| 合計ジャッジ時間 | 7,492 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 42 WA * 3 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
typedef long long ll;
const int INF = 1<<30;
const ll INFLL = 1LL<<60;
const ll MOD = 998244353;
const double INFD = 1.0E18;
const int dx[4] = {1, 0, -1, 0};
const int dy[4] = {0, -1, 0, 1};
//const int dx[8] = {1, 1, 0, -1, -1, -1, 0, 1};
//const int dy[8] = {0, 1, 1, 1, 0, -1, -1, -1};
using Pair = pair<ll, ll>;
using Graph = vector<vector<pair<int, int>>>;
using mint = atcoder::modint1000000007;
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout << fixed << setprecision(15);
string s; cin >> s;
int n = s.size();
//3を含まないかつ桁和
string ans;
bool three = false;
int mod = 0;
for (int i = 0; i < n; i++){
if (three) ans.push_back('9');
else{
if (s[i] == '3'){
three = true;
ans.push_back('2');
mod = (mod + 2) % 3;
}
else{
ans.push_back(s[i]);
mod = (mod + s[i] - '0') % 3;
}
}
}
if (mod != 0){
cout << ans << endl;
return 0;
}
//繰り下がりを考える
vector<int> a(n);
for (int i = 0; i < n; i++) a[i] = ans[i] - '0';
a[n - 1]--;
for (int i = n - 1; i > 0; i--){
if (a[i] != -1) break;
a[i] = 9;
a[i + 1]--;
}
for (int i = 0; i < n; i++) cout << a[i];
cout << endl;
return 0;
}