結果

問題 No.1597 Matrix Sort
ユーザー yuruhiyayuruhiya
提出日時 2021-08-19 16:12:39
言語 Crystal
(1.11.2)
結果
AC  
実行時間 498 ms / 1,500 ms
コード長 318 bytes
コンパイル時間 15,147 ms
コンパイル使用メモリ 295,540 KB
実行使用メモリ 417,420 KB
最終ジャッジ日時 2024-10-12 16:27:56
合計ジャッジ時間 24,729 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 498 ms
400,384 KB
testcase_04 AC 485 ms
339,584 KB
testcase_05 AC 457 ms
372,864 KB
testcase_06 AC 442 ms
339,840 KB
testcase_07 AC 463 ms
339,584 KB
testcase_08 AC 355 ms
338,304 KB
testcase_09 AC 384 ms
339,584 KB
testcase_10 AC 362 ms
373,248 KB
testcase_11 AC 359 ms
339,584 KB
testcase_12 AC 35 ms
14,336 KB
testcase_13 AC 65 ms
40,828 KB
testcase_14 AC 357 ms
339,584 KB
testcase_15 AC 35 ms
13,440 KB
testcase_16 AC 69 ms
45,824 KB
testcase_17 AC 285 ms
339,584 KB
testcase_18 AC 325 ms
339,808 KB
testcase_19 AC 359 ms
390,648 KB
testcase_20 AC 276 ms
343,824 KB
testcase_21 AC 334 ms
338,444 KB
testcase_22 AC 327 ms
417,420 KB
testcase_23 AC 314 ms
390,844 KB
testcase_24 AC 23 ms
11,776 KB
testcase_25 AC 21 ms
11,776 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 246 ms
367,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k, p = read_line.split.map(&.to_i64)
a = read_line.split.map(&.to_i64)
b = read_line.split.map(&.to_i64)
cnt = [0] * p
a.each { |x| cnt[x] += 1 }
sum = cnt.accumulate(0i64)
puts (0...p).bsearch { |x|
  b.sum { |b|
    val = sum[{p, p - b + x + 1}.min] - sum[p - b]
    x < b ? val : val + sum[x - b + 1]
  } >= k
}
0