結果
| 問題 |
No.2728 Grid Expansion
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-04-19 21:26:39 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 834 bytes |
| コンパイル時間 | 3,989 ms |
| コンパイル使用メモリ | 232,224 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-11 13:57:24 |
| 合計ジャッジ時間 | 4,618 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ull = unsigned long long;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
const vector<int> dx = {0,0,1,-1};
const vector<int> dy = {1,-1,0,0};
const ll INF = 1e18;
const ll inf = 1e8;
const ll MOD = 998244353;
int main(){
int n,k;
cin >> n >> k;
vector<string> ans;
for(int i = 0; i < n; i++){
string s = "";
for(int j = 0; j < n; j++){
char a;
cin >> a;
for(int p = 0; p < k; p++) s += a;
}
for(int j = 0; j < k; j++) ans.push_back(s);
}
for(auto i : ans) cout << i << endl;
}