| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 148830 | 冰块ee | 词组缩写 | C++ | Wrong Answer | 0 MS | 268 KB | 179 | 2026-03-01 18:47:22 |
#include<bits/stdc++.h> using namespace std; int t; string s; int main(){ cin>>t; for(int i=1;i<=t;i++){ cin>>s; s=' '+s; cout<<(int)(s[1]+32); } return 0; }
------Input------
10 asdfghjklp bnmlkjhgfd cvbnmlkjhg dfghjklpoi ertyuioplk fghjklpoiu ghjklpoiuy hytgbvfred iuytrewqas jklpoiuytr a B C d e qwertyuioplkjhgfd Qweer psdafdsf SFGCHV qwertyuhbgfd bvcvgtrdfg Q E R F D CD Rttt aa bb cc dd ee Aa Bb Cc Dd Ee plokijuhyg QWERTYUIO Qpojh jhuQWEE QWERTYUJMNBVCDFGH
------Answer-----
ABCDEFGHIJ ABCDE Q QPS QB QERFDCR ABCDE ABCDE PQQJ Q
------Your output-----
129130131132133134135136137138