結果

問題 No.729 文字swap
ユーザー HAGI_TAROHAGI_TARO
提出日時 2021-09-18 14:45:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 174 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,700 KB
実行使用メモリ 53,492 KB
最終ジャッジ日時 2024-06-30 12:11:54
合計ジャッジ時間 1,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,940 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 38 ms
52,868 KB
testcase_03 AC 38 ms
52,120 KB
testcase_04 AC 41 ms
52,808 KB
testcase_05 AC 37 ms
52,208 KB
testcase_06 AC 37 ms
53,492 KB
testcase_07 AC 37 ms
52,000 KB
testcase_08 AC 38 ms
52,208 KB
testcase_09 AC 38 ms
52,932 KB
testcase_10 AC 38 ms
52,932 KB
testcase_11 AC 37 ms
53,292 KB
testcase_12 AC 38 ms
52,636 KB
testcase_13 AC 39 ms
52,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
s_list = [s[i] for i in range(len(s))]
i,j = map(int,input().split())
temp = s_list[i]
s_list[i] = s_list[j]
s_list[j] = temp
for i in s_list:
    print(i,end="")
0