結果
問題 | No.544 Delete 7 |
ユーザー | gigime |
提出日時 | 2017-07-14 22:25:24 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 514 bytes |
コンパイル時間 | 1,467 ms |
コンパイル使用メモリ | 167,668 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 15:59:48 |
合計ジャッジ時間 | 3,187 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 48 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,l,r) for(int i = (int) (l);i < (int) (r);i++) template<typename T> bool chmax(T& a,const T& b){ return a < b ? (a = b,true) : false; } template<typename T> bool chmin(T& a,const T& b){ return b < a ? (a = b,true) : false; } typedef long long ll; int N; string S; int main() { cin >> S; N = S.size(); string num = string(N,'0'); FOR(i,0,N) if(S [i] == '7'){ S [i]--; num [i]++; } cout << stoll(S) << " " << stoll(num) << endl; return 0; }