QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#93894 | #4413. Cyber Language | katoli# | AC ✓ | 2ms | 3348kb | C++14 | 492b | 2023-04-03 18:40:49 | 2023-04-03 18:40:52 |
Judging History
answer
#pragma GCC optimize(2)
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
using ll=long long;
signed main() {
ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
int T;cin>>T;
string s;getline(cin,s);
for(;T;T--){
getline(cin,s);
cout<<char(toupper(s[0]));
for(int i=0;i<s.size();++i){
if(s[i]==' ')cout<<char(toupper(s[i+1]));
}
cout<<endl;
}
return 0;
}
// init?
// var->0?
// infinite dfs?
// out of bound?
// max_element / min_element?
詳細信息
Test #1:
score: 100
Accepted
time: 2ms
memory: 3348kb
input:
10 qing lian xi wo bao gao wo dai ni men da da shi suo qu bao dao yong yuan de shen xiao si wo le shi zhen de ni shuo de dou dui yin yang guai qi
output:
QLXW BG WDNMD DSSQ BD YYDS XSWL SZD NSDDD YYGQ
result:
ok 10 lines