Your output
hello, world!
Checker message
OK!
System message
Exited with return code 0
Submission ID | Problem | Status | Score | Time | Memory | Code / Answer files | User | Submit time |
---|---|---|---|---|---|---|---|---|
#10838 | #1. 你好,世界! | Accepted | 100 | 5 ms | 244 K | C++ 11 / 104 B | HKSC2023-233 | 2023-07-07 19:09:38 |
#include <iostream>
using namespace std;
int main() {
cout << "hello, world!";
return 0;
}