Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118327 | 王奕诺 | 06输出日期 | C++ | Accepted | 1 MS | 268 KB | 196 | 2025-04-26 19:14:28 |
#include <iostream> #include <cstdio> #include <iomanip> #include <cmath> using namespace std; int main(){ int a,b,c; scanf("%d-%d-%d",&a,&b,&c); printf("%d-%d-%d",c,a,b); }