Submission #1697305


Source Code Expand

#include <cstdio>
#include <algorithm>

#define MAX_T 100

int K, T, a[MAX_T];

int main()
{
  scanf("%d %d", &K, &T);
  for (int i = 0; i < T; i++)
    scanf("%d", &a[i]);
  
  int aMax=0, aSecondMax=0;
  while (true){
    int aMaxIndex = 0;
    int aSecondMaxIndex = 0;
    for (int i = 0; i < T; i++)
    {
      if (a[i] > aMax){
        aMax = a[i];
        aMaxIndex = i;
      }
    }
    for (int i = 0; i < T; i++)
    {
      if (a[i] > aSecondMax && i != aMaxIndex){
        aSecondMax = a[i];
        aSecondMaxIndex = i;
      }
    }
    if (aSecondMax == 0){
      break;
    }
    a[aMaxIndex]--;
    a[aSecondMaxIndex]--;
    aMax = 0;
    aSecondMax = 0;
  }
  printf("%d\n", aMax-1);
  return 0;
}

Submission Info

Submission Time
Task B - K Cakes
User nersery
Language C++14 (GCC 5.4.1)
Score 0
Code Size 757 Byte
Status WA
Exec Time 2 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:10:25: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d %d", &K, &T);
                         ^
./Main.cpp:12:23: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
     scanf("%d", &a[i]);
                       ^

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 9
WA × 1
Set Name Test Cases
Sample 0_000.txt, 0_001.txt, 0_002.txt
All 0_000.txt, 0_001.txt, 0_002.txt, 1_003.txt, 1_004.txt, 1_005.txt, 1_006.txt, 1_007.txt, 1_008.txt, 1_009.txt
Case Name Status Exec Time Memory
0_000.txt AC 1 ms 128 KB
0_001.txt AC 1 ms 128 KB
0_002.txt AC 1 ms 128 KB
1_003.txt WA 2 ms 128 KB
1_004.txt AC 1 ms 128 KB
1_005.txt AC 1 ms 128 KB
1_006.txt AC 1 ms 128 KB
1_007.txt AC 1 ms 128 KB
1_008.txt AC 1 ms 128 KB
1_009.txt AC 1 ms 128 KB