結果

問題 No.729 文字swap
ユーザー brthyyjpbrthyyjp
提出日時 2020-04-06 15:57:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 104 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 53,340 KB
最終ジャッジ日時 2024-07-06 11:46:23
合計ジャッジ時間 1,161 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,252 KB
testcase_01 AC 33 ms
52,020 KB
testcase_02 AC 33 ms
51,616 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 34 ms
51,820 KB
testcase_05 AC 35 ms
52,068 KB
testcase_06 AC 31 ms
52,496 KB
testcase_07 AC 33 ms
53,340 KB
testcase_08 AC 38 ms
51,416 KB
testcase_09 AC 33 ms
51,564 KB
testcase_10 AC 34 ms
52,156 KB
testcase_11 AC 34 ms
53,100 KB
testcase_12 AC 33 ms
52,552 KB
testcase_13 AC 34 ms
53,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = str(input())
i, j = map(int, input().split())
s = list(s)
s[i], s[j] = s[j], s[i]
print(''.join(s))
0