結果
問題 | No.729 文字swap |
ユーザー | vividrabbit |
提出日時 | 2018-11-06 11:53:28 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 299 bytes |
コンパイル時間 | 502 ms |
コンパイル使用メモリ | 55,236 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-04-30 22:11:49 |
合計ジャッジ時間 | 1,063 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
ソースコード
#include<iostream> #include<string> using namespace std; int main(){ string input; int pos_a,pos_b; cin >> input >> pos_a >> pos_b; for(int i=0;i<input.size();i++){ if(i==pos_a) cout<<input[pos_b]; else if(i==pos_b) cout<<input[pos_a]; else cout<<input[i]; } cout << "\n"; return 0; }