| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 150039 | 徐英杰 | 11加密规则 | C++ | Wrong Answer | 1 MS | 272 KB | 309 | 2026-03-21 16:58:35 |
# include<iostream> using namespace std; int main(){ int a,b,c,d,e,f; scanf("%1d%1d%1d%1d%1d%1d",&a,&b,&c,&d,&e,&f); cout<<char(a+'A'); cout<<(b % 2 == 0)?b/2:b; cout<<(a+b+c)%10; cout<<d; cout<<(e+'l'+'e')/10%10; cout<<(a+b+c+d+e+f)%10<<endl; return 0; }
------Input------
115209
------Answer-----
B17208
------Your output-----
B07208