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 |
---|---|---|---|---|---|---|---|---|
#11757 | #1. 你好,世界! | Accepted | 100 | 8 ms | 252 K | C++ 17 / 108 B | HKSC2023-102 | 2023-07-08 13:39:22 |
#include <bits/stdc++.h>
using namespace std;
int main() {
cout << "Hello, World!";
return 0;
}