| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 430599 | 王璟源 | 【C1-10】大写字母 | C++ | Accepted | 100 | 4 MS | 240 KB | 159 | 2026-02-25 17:29:03 |
#include <iostream> using namespace std; int main(){ char c; cin>>c; if(c>='A'&&c<='Z'){ cout<<c-'A'+1; }else{ cout<<"No"; } return 0; }