結果

問題 No.455 冬の大三角
ユーザー ei1333333
提出日時 2016-12-06 00:18:29
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
RE  
実行時間 -
コード長 239 bytes
コンパイル時間 1,879 ms
コンパイル使用メモリ 158,696 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-27 22:09:05
合計ジャッジ時間 7,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 RE * 1
other AC * 16 WA * 10 RE * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main()
{
  int H, W;
  string S[10];

  cin >> H >> W;

  for(int i = 0; i < H; i++) {
    cin >> S[i];
  }
  S[0][1] = '*';
  for(int i = 0; i < H; i++) {
    cout << S[i] << endl;
  }
}
0