結果
| 問題 | No.3610 CHANGE |
| コンテスト | |
| ユーザー |
kidodesu
|
| 提出日時 | 2026-08-06 14:04:15 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 61 ms / 2,000 ms |
| + 213µs | |
| コード長 | 154 bytes |
| 記録 | |
| コンパイル時間 | 2,545 ms |
| コンパイル使用メモリ | 94,960 KB |
| 実行使用メモリ | 78,464 KB |
| 最終ジャッジ日時 | 2026-08-06 14:04:34 |
| 合計ジャッジ時間 | 2,204 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
def main():
n = int(input())
S = input()
x, c = list(map(str, input().split()))
x = int(x)-1
return S[:x] + c + S[x+1:]
print(main())
kidodesu