結果

問題 No.2424 Josouzai
ユーザー kou_kkkkou_kkk
提出日時 2023-08-24 12:38:43
言語 Nim
(2.0.2)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 3,129 ms
コンパイル使用メモリ 65,856 KB
実行使用メモリ 19,352 KB
最終ジャッジ日時 2024-06-02 03:10:43
合計ジャッジ時間 5,844 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 25 ms
7,424 KB
testcase_05 AC 82 ms
17,764 KB
testcase_06 AC 80 ms
19,352 KB
testcase_07 AC 84 ms
17,876 KB
testcase_08 AC 84 ms
17,732 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 10 ms
6,948 KB
testcase_11 AC 30 ms
16,940 KB
testcase_12 AC 22 ms
12,156 KB
testcase_13 AC 24 ms
7,424 KB
testcase_14 AC 45 ms
10,880 KB
testcase_15 AC 7 ms
6,944 KB
testcase_16 AC 74 ms
17,032 KB
testcase_17 AC 19 ms
6,940 KB
testcase_18 AC 23 ms
7,424 KB
testcase_19 AC 39 ms
10,368 KB
testcase_20 AC 73 ms
16,936 KB
testcase_21 AC 55 ms
12,800 KB
testcase_22 AC 24 ms
7,424 KB
testcase_23 AC 29 ms
8,576 KB
testcase_24 AC 14 ms
6,944 KB
testcase_25 AC 76 ms
17,008 KB
testcase_26 AC 56 ms
12,800 KB
testcase_27 AC 81 ms
17,828 KB
testcase_28 AC 68 ms
15,000 KB
testcase_29 AC 60 ms
14,208 KB
testcase_30 AC 14 ms
6,944 KB
testcase_31 AC 35 ms
9,728 KB
testcase_32 AC 78 ms
17,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import algorithm, sequtils, strutils

var
  k = (stdin.readLine.split)[1].parseInt
  a = stdin.readLine.split.map parseInt
sort a

var cnt = 0
for v in a:
  if k < v: break
  k.dec v
  inc cnt

echo cnt, " ", k
0