Submission #43871

# Submission time Handle Problem Language Result Execution time Memory
43871 2018-03-26T10:36:57 Z admin scanf 함수 5 (BSC_0_7) C++14
100 / 100
2 ms 548 KB
#include <bits/stdc++.h>
using namespace std;

pair<int, int> read() {
	int a, b;
	cin >> a >> b;
  return make_pair(a, b);
}

int main() {
  if(const auto [x, y] = read(); (x + y) % 2 == 0) {
    cout << (x + y) / 2 << endl;
  }else {
    cout << (x + y) / 2 << ".5" << endl;
  }
  return 0;
}

Compilation message

scanf5.cpp: In function 'int main()':
scanf5.cpp:11:6: warning: init-statement in selection statements only available with -std=c++1z or -std=gnu++1z
   if(const auto [x, y] = read(); (x + y) % 2 == 0) {
      ^~~~~
scanf5.cpp:11:17: warning: decomposition declaration only available with -std=c++1z or -std=gnu++1z
   if(const auto [x, y] = read(); (x + y) % 2 == 0) {
                 ^
# Verdict Execution time Memory Grader output
1 Correct 2 ms 248 KB Output is correct
2 Correct 2 ms 384 KB Output is correct
3 Correct 2 ms 416 KB Output is correct
4 Correct 2 ms 448 KB Output is correct
5 Correct 2 ms 516 KB Output is correct
6 Correct 2 ms 548 KB Output is correct
7 Correct 2 ms 548 KB Output is correct
8 Correct 2 ms 548 KB Output is correct
9 Correct 2 ms 548 KB Output is correct
10 Correct 2 ms 548 KB Output is correct