結果

問題 No.1110 好きな歌
ユーザー simansiman
提出日時 2020-07-26 01:19:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 733 ms / 5,000 ms
コード長 167 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-06-27 18:37:18
合計ジャッジ時間 22,325 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,032 KB
testcase_01 AC 82 ms
12,032 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 83 ms
12,032 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 80 ms
12,288 KB
testcase_07 AC 84 ms
12,160 KB
testcase_08 AC 82 ms
12,160 KB
testcase_09 AC 84 ms
12,032 KB
testcase_10 AC 82 ms
12,160 KB
testcase_11 AC 82 ms
12,032 KB
testcase_12 AC 81 ms
12,288 KB
testcase_13 AC 81 ms
12,160 KB
testcase_14 AC 84 ms
12,032 KB
testcase_15 AC 81 ms
12,160 KB
testcase_16 AC 83 ms
12,160 KB
testcase_17 AC 84 ms
12,032 KB
testcase_18 AC 81 ms
12,160 KB
testcase_19 AC 87 ms
12,160 KB
testcase_20 AC 85 ms
12,032 KB
testcase_21 AC 82 ms
12,032 KB
testcase_22 AC 84 ms
12,160 KB
testcase_23 AC 81 ms
12,032 KB
testcase_24 AC 430 ms
14,976 KB
testcase_25 AC 516 ms
15,488 KB
testcase_26 AC 301 ms
13,952 KB
testcase_27 AC 507 ms
15,616 KB
testcase_28 AC 330 ms
14,208 KB
testcase_29 AC 579 ms
17,024 KB
testcase_30 AC 311 ms
14,208 KB
testcase_31 AC 227 ms
13,184 KB
testcase_32 AC 651 ms
17,536 KB
testcase_33 AC 349 ms
14,464 KB
testcase_34 AC 457 ms
15,232 KB
testcase_35 AC 656 ms
17,664 KB
testcase_36 AC 146 ms
12,672 KB
testcase_37 AC 242 ms
13,440 KB
testcase_38 AC 567 ms
17,024 KB
testcase_39 AC 450 ms
14,848 KB
testcase_40 AC 549 ms
16,768 KB
testcase_41 AC 118 ms
12,416 KB
testcase_42 AC 611 ms
17,536 KB
testcase_43 AC 585 ms
16,896 KB
testcase_44 AC 713 ms
17,920 KB
testcase_45 AC 733 ms
17,664 KB
testcase_46 AC 679 ms
17,792 KB
testcase_47 AC 699 ms
17,920 KB
testcase_48 AC 683 ms
17,792 KB
testcase_49 AC 653 ms
17,664 KB
testcase_50 AC 679 ms
17,664 KB
testcase_51 AC 672 ms
17,792 KB
testcase_52 AC 685 ms
17,792 KB
testcase_53 AC 692 ms
17,664 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, D = gets.split.map(&:to_i)
A = N.times.map { gets.to_i }
sorted = A.sort

A.each do |a|
  t = a - D
  idx = sorted.bsearch_index { |x| x >= t + 1 }

  puts idx
end
0