提出 #73296938
ソースコード 拡げる
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define Int long long
#define itn long long
#define iint long long
const int N=105;
int n,maxn;
string s[N];
inline int read() {
int x = 0, f = 1;
char ch = getchar();
while (ch < '0' || ch > '9') {
if (ch == '-')
f = -1;
ch = getchar();
}
while (ch >= '0' && ch <= '9') {
x = (x << 3) + (x << 1) + (ch ^ 48);
ch = getchar();
}
return x * f;
}
inline void write(int x) {
if (x < 0) {
putchar('-');
x = -x;
}
if (x > 9)
write(x / 10);
putchar(x % 10 + '0');
}
signed main() {
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin>>n;
for(int i=0;i<n;i++){
cin>>s[i];
maxn=max(maxn,(int)s[i].length());
}
for(int i=0;i<n;i++){
if((int)s[i].length()!=maxn){
int cha=(maxn-s[i].length())/2;
for(int k=1;k<=cha;k++) cout<<".";
cout<<s[i];
for(int k=1;k<=cha;k++) cout<<".";
}
else cout<<s[i];
cout<<"\n";
}
return 0;
}
提出情報
| 提出日時 | |
|---|---|
| 問題 | B - Center Alignment |
| ユーザ | ccy20130127 |
| 言語 | C++23 (GCC 15.2.0) |
| 得点 | 200 |
| コード長 | 991 Byte |
| 結果 | AC |
| 実行時間 | 1 ms |
| メモリ | 3704 KiB |
ジャッジ結果
| セット名 | Sample | All | ||||
|---|---|---|---|---|---|---|
| 得点 / 配点 | 0 / 0 | 200 / 200 | ||||
| 結果 |
|
|
| セット名 | テストケース |
|---|---|
| Sample | 00_sample_01.txt, 00_sample_02.txt |
| All | 00_sample_01.txt, 00_sample_02.txt, 01_random_01.txt, 01_random_02.txt, 01_random_03.txt, 01_random_04.txt, 01_random_05.txt, 01_random_06.txt, 02_min_01.txt, 03_max_01.txt |
| ケース名 | 結果 | 実行時間 | メモリ |
|---|---|---|---|
| 00_sample_01.txt | AC | 1 ms | 3456 KiB |
| 00_sample_02.txt | AC | 1 ms | 3524 KiB |
| 01_random_01.txt | AC | 1 ms | 3704 KiB |
| 01_random_02.txt | AC | 1 ms | 3660 KiB |
| 01_random_03.txt | AC | 1 ms | 3704 KiB |
| 01_random_04.txt | AC | 1 ms | 3524 KiB |
| 01_random_05.txt | AC | 1 ms | 3704 KiB |
| 01_random_06.txt | AC | 1 ms | 3504 KiB |
| 02_min_01.txt | AC | 1 ms | 3552 KiB |
| 03_max_01.txt | AC | 1 ms | 3524 KiB |