結果
| 問題 |
No.2728 Grid Expansion
|
| コンテスト | |
| ユーザー |
cled0328
|
| 提出日時 | 2024-04-19 21:21:44 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 270 bytes |
| コンパイル時間 | 2,106 ms |
| コンパイル使用メモリ | 195,216 KB |
| 最終ジャッジ日時 | 2025-02-21 03:29:14 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 15 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main(){
int n,k;cin>>n>>k;
vector<string> s(n);
for(int i=0;i<n;i++)cin>>s[i];
for(int i=0;i<n*k;i++){
for(int j=0;j<n*k;j++){
cout<<s[i/k][j/k];
}
cout<<"\n";
}
}
cled0328