結果

問題 No.729 文字swap
ユーザー Heropro7Heropro7
提出日時 2018-09-19 00:01:39
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 297 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 118,732 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 17:51:02
合計ジャッジ時間 1,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:9: warning: variable 'str' is uninitialized when used here [-Wuninitialized]
    9 |         cin >> str;
      |                ^~~
main.cpp:7:11: note: initialize the variable 'str' to silence this warning
    7 |         char* str;
      |                  ^
      |                   = nullptr
1 warning generated.

ソースコード

diff #

#include<iostream>

using namespace std;
void swap(char* str,int n,int m);

int main(void){
	char* str;
	int n,m;
	cin >> str;
	cin >> n >> m;
	
	swap(str,n,m);
	cout << str << '\n';
	
	return 0;
}
void swap(char* str,int n,int m){
	char tmp;
	
	tmp=*(str+n);
	*(str+n)=*(str+m);
	*(str+m)=tmp;
}
0