| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145614 | 冰块ee | 06数字拼接 | C++ | Wrong Answer | 0 MS | 276 KB | 121 | 2026-01-25 17:00:14 |
#include<bits/stdc++.h> using namespace std; int n,s1,s2,s3; int main(){ cin>>s1,s2,s3; cout<<s1<<s2<<s3; }
------Input------
7 7 9
------Answer-----
779
------Your output-----
700