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