結果

問題 No.2314 Backflip
ユーザー Ywestbuilderk
提出日時 2023-06-11 09:15:14
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 59,776 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2025-01-03 03:46:42
合計ジャッジ時間 1,247 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;

int main(){
	string s;
	cin >> s;
	int n = s.size();
	
		if(s[n - 1] == '0') s[n - 1] = '1';
		else s[n - 1] = '0';
	
	cout << s;
	return 0;
}
0