답안 #375094

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
375094 2021-03-09T02:43:31 Z daniel920712 Naan (JOI19_naan) C++14
0 / 100
370 ms 200192 KB
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <vector>

using namespace std;
vector < long long > sum[2005];
long long all[2005];
int main()
{
    long long N,M,i,j,k,tt=0,t,x;
    scanf("%lld %lld",&N,&M);
    x=M;
    for(i=0;i<N;i++)
    {
        tt=0;
        sum[i].push_back(tt);
        for(j=0;j<M;j++)
        {
            scanf("%lld",&t);
            all[i]+=t;
            for(k=0;k<N*M;k++)
            {
                tt+=t;
                sum[i].push_back(tt);
            }
        }
    }
    M*=(N*M);

    for(i=1;i<M;i++)
    {
        if(sum[0][i]/all[0]>=x&&(sum[1][M]-sum[1][i])/all[1]>=x)
        {
            printf("%lld %lld\n",i,M/(x*N));
            printf("1 2\n");
            return 0;
        }
        if(sum[1][i]/all[1]>=x&&(sum[0][M]-sum[0][i])/all[0]>=x)
        {
            printf("%lld %lld\n",i,M/(x*N));
            printf("2 1\n");
            return 0;
        }
    }
    printf("-1\n");
    return 0;
}

Compilation message

naan.cpp: In function 'int main()':
naan.cpp:12:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   12 |     scanf("%lld %lld",&N,&M);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~
naan.cpp:20:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   20 |             scanf("%lld",&t);
      |             ~~~~~^~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB X_i is not increasing
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 97 ms 70928 KB Output is correct
2 Incorrect 370 ms 200192 KB X_i is not increasing
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 364 KB X_i is not increasing
2 Halted 0 ms 0 KB -