結果

問題 No.1454 ツブ消ししとるなEasy
ユーザー yuruhiyayuruhiya
提出日時 2021-03-31 21:07:54
言語 Crystal
(1.11.2)
結果
RE  
実行時間 -
コード長 340 bytes
コンパイル時間 15,388 ms
コンパイル使用メモリ 296,464 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-05-09 01:09:50
合計ジャッジ時間 16,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 RE -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 14 ms
8,704 KB
testcase_08 AC 13 ms
8,064 KB
testcase_09 AC 14 ms
8,064 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

n, m, x, y = read_line.split.map(&.to_i)
a = read_line.split.map(&.to_i).select { |i| i > y }
can = a.count { |i| i < x }
if a.size - can <= m
  puts a.sort.reverse[0, m].sum
else
  puts "Handicapped"
end
0