結果
| 問題 | No.3610 CHANGE |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-13 01:41:32 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 495µs | |
| コード長 | 230 bytes |
| 記録 | |
| コンパイル時間 | 2,726 ms |
| コンパイル使用メモリ | 151,700 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-08-13 01:41:36 |
| 合計ジャッジ時間 | 2,310 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 |
ソースコード
#include <iostream>
using namespace std;
int main() {
string matn;
char replacement;
int len, index;
cin >> len;
cin >> matn;
cin >> index >> replacement;
index -= 1;
matn[index] = replacement;
cout << matn << endl;
}