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