# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
677623 | 2023-01-04T03:38:52 Z | pbhat | scanf 함수 5 (BSC_0_7) | C++14 | 1 ms | 212 KB |
#include <bits/stdc++.h> using namespace std; void solve() { int a, b; cin >> a >> b; cout << ((a+b)/2) << "\n"; } int main() { solve(); return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 212 KB | Output is correct |
2 | Incorrect | 1 ms | 212 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |