結果

問題 No.2424 Josouzai
ユーザー nekotinekoti
提出日時 2023-08-18 21:18:52
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 03:02:19
合計ジャッジ時間 2,332 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 15 ms
5,376 KB
testcase_05 AC 50 ms
5,376 KB
testcase_06 AC 54 ms
5,376 KB
testcase_07 AC 49 ms
5,376 KB
testcase_08 AC 51 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 26 ms
5,376 KB
testcase_12 AC 19 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 45 ms
5,376 KB
testcase_17 AC 11 ms
5,376 KB
testcase_18 AC 14 ms
5,376 KB
testcase_19 AC 22 ms
5,376 KB
testcase_20 AC 43 ms
5,376 KB
testcase_21 AC 33 ms
5,376 KB
testcase_22 AC 14 ms
5,376 KB
testcase_23 AC 18 ms
5,376 KB
testcase_24 AC 8 ms
5,376 KB
testcase_25 AC 45 ms
5,376 KB
testcase_26 AC 32 ms
5,376 KB
testcase_27 AC 47 ms
5,376 KB
testcase_28 AC 40 ms
5,376 KB
testcase_29 AC 35 ms
5,376 KB
testcase_30 AC 9 ms
5,376 KB
testcase_31 AC 21 ms
5,376 KB
testcase_32 AC 47 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
//■ライブラリ
#define _SORT_TYPE long
int ascsort(const void * n1, const void * n2){if(*(_SORT_TYPE *)n1>*(_SORT_TYPE *)n2)return 1;else if (*(_SORT_TYPE *)n1<*(_SORT_TYPE *)n2)return -1;else return 0;}//昇順ソート
int main(void)
{
  int scan;//scanf警告用
  long long ans=0;
  int i, j;
  
  int n,k;
  scan=scanf("%d",&n);
  scan=scanf("%d",&k);
  _SORT_TYPE a[n],tmp;
  for(i=0; i<n; i++)scan=scanf("%ld",&a[i]);
  qsort(a, n, sizeof(_SORT_TYPE), ascsort);
  tmp=a[0];
  for(i=0; i<n; i++)
  {
  	ans+=a[i];
  	if(k<ans)break;
  	tmp=a[i+1];
  }
  if(i==n)tmp=0;
  printf("%d %lld", i, k-ans+tmp);
  return 0;
}
0