| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 325137 | 方相宜 | 【C1-10】大写字母 | C++ | Accepted | 100 | 1 MS | 252 KB | 181 | 2025-06-02 19:16:23 |
#include <iostream> using namespace std; int main() { char a; cin>>a; if(a>='A'&&a<='Z'){ cout<<(int)(a)-64; }else{ cout<<"No"; } return 0; }