QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#83339 | #4413. Cyber Language | bosun# | AC ✓ | 2ms | 3424kb | C++11 | 270b | 2023-03-01 14:18:26 | 2023-03-01 14:18:30 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int t;
char s[101];
int main(){
cin>>t;char c=getchar();
while(t--){
gets(s);
for(int i=0;i<strlen(s);i++){
if(i==0||s[i-1]==' '){
printf("%c",s[i]-'a'+'A');
}
}
puts("");
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 2ms
memory: 3424kb
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