제출 #1045067

#제출 시각아이디문제언어결과실행 시간메모리
1045067DeathIsAweGap (APIO16_gap)C++14
30 / 100
27 ms3652 KiB
#include "gap.h" #include <bits/stdc++.h> using namespace std; #define ll long long long long findGap(int test, int n) { ll arr[n]; ll s, t, ans; if (test == 1) { ans = 0; s = 0; t = 1e18; for (int i=0;i<n/2;i++) { MinMax(s, t, &arr[i], &arr[n - i - 1]); s = arr[i] + 1; t = arr[n - i - 1] - 1; } if (n % 2 == 1) { MinMax(s, t, &arr[n/2], &arr[n/2]); } for (int i=1;i<n;i++) { ans = max(ans, arr[i] - arr[i-1]); } return ans; } }

컴파일 시 표준 에러 (stderr) 메시지

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:24:1: warning: control reaches end of non-void function [-Wreturn-type]
   24 | }
      | ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...