結果

問題 No.544 Delete 7
ユーザー tone_backtone_back
提出日時 2017-07-14 22:54:48
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 612 bytes
コンパイル時間 564 ms
コンパイル使用メモリ 73,448 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-21 16:10:57
合計ジャッジ時間 2,292 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES

#include <iostream>
#include <math.h>
#include <climits>
#include <algorithm>
#include <functional>
#include <vector>
#include <queue>
#include <map> 
#include <set>
#include <string>
using namespace std;

typedef long long ll;
typedef pair<ll, ll> P;

/* sample input

*/

int main()
{
	ll n;
	cin >> n;
	ll temp = n;
	ll a=n, b=0;
	for (int i = 1; i <= 10; i++) {
		ll MD = 10;
		ll mod = temp % MD;
		temp = temp/10;
		if (mod == 7) {
			ll PW = 1;
			for (int j = 1; j < i; j++) {
				PW *= 10;
			}
			a -= PW;
			b += PW;
		}
		
	}

	cout << a << " " << b << endl;


	return 0;
}
0