結果

問題 No.544 Delete 7
ユーザー KKT89
提出日時 2020-10-16 12:31:42
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 418 bytes
コンパイル時間 1,885 ms
コンパイル使用メモリ 195,404 KB
最終ジャッジ日時 2025-01-15 07:47:24
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    string n; cin >> n;
    string s="",t="";
    bool f=false;
    for(int i=0;i<n.size();i++){
        if(n[i]=='7'){
            s+='6'; t+='1'; f=true;
        }
        else{
            s+=n[i];
            if(f)t+='0';
        }
    }
    cout << s << " " << t << endl;
}
0