結果
問題 | No.729 文字swap |
ユーザー |
![]() |
提出日時 | 2019-02-08 12:54:48 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 210 bytes |
コンパイル時間 | 488 ms |
コンパイル使用メモリ | 63,232 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 22:16:10 |
合計ジャッジ時間 | 1,139 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 11 |
ソースコード
#include<iostream> #include<string> int main() { std::string s; int a,b; std::cin>>s>>a>>b; char tmp = s[a]; s[a]=s[b]; s[b]=tmp; std::cout<<s<<std::endl; return 0; }