답안 #424869

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
424869 2021-06-12T11:00:47 Z A_D Fibonacci representations (CEOI18_fib) C++14
0 / 100
2 ms 288 KB
#include <bits/stdc++.h>
#define int long long
#define ii pair<int,int>
#define F first
#define S second
#define du long double
using namespace std;
const int MOD=1e9+7;
void solve()
{
    int n,mx=0;
    cin>>n;
    while(n--){
        int a;
        cin>>a;
        mx=max(mx,a);
        int ans=(mx+1)/2;
        ans%=MOD;
        cout<<ans<<endl;
    }
}
main()
{
    int t=1;
    //cin>>t;
    while(t--)solve();
}

Compilation message

fib.cpp:22:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   22 | main()
      | ^~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 288 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -