結果

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main( int argc, char *argv[] )
{
int A;
int B;
int i;
char S[ 100 ];
int X;


	ios::sync_with_stdio( false );
	cin.tie( 0 );

	A = 0;
	B = 0;
	cin >> S;
	i = 0;
	while( S[ i ] != '\0' )
	{
		X = S[ i ] - '0';

		A *= 10;
		B *= 10;
		if( X == 7 )
		{
			A += 4;
			B += 3;
		}
		else
			A += X;

		i++;
	}

	cout << A << " " << B << endl;

	return 0;
}

0