結果
問題 | No.145 yukiover |
ユーザー | siman |
提出日時 | 2022-02-23 17:34:47 |
言語 | Ruby (3.3.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 520 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 7,168 KB |
実行使用メモリ | 23,424 KB |
最終ジャッジ日時 | 2024-07-01 17:54:41 |
合計ジャッジ時間 | 8,507 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 92 ms
12,160 KB |
testcase_01 | AC | 87 ms
12,160 KB |
testcase_02 | AC | 88 ms
12,160 KB |
testcase_03 | AC | 88 ms
12,160 KB |
testcase_04 | AC | 87 ms
12,160 KB |
testcase_05 | RE | - |
testcase_06 | AC | 86 ms
12,032 KB |
testcase_07 | AC | 89 ms
12,160 KB |
testcase_08 | AC | 91 ms
12,032 KB |
testcase_09 | AC | 90 ms
12,160 KB |
testcase_10 | RE | - |
testcase_11 | AC | 131 ms
19,456 KB |
testcase_12 | RE | - |
testcase_13 | AC | 415 ms
21,888 KB |
testcase_14 | AC | 759 ms
21,888 KB |
testcase_15 | AC | 883 ms
22,016 KB |
testcase_16 | AC | 1,116 ms
23,424 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 242 ms
21,888 KB |
コンパイルメッセージ
Syntax OK
ソースコード
N = gets.to_i S = gets.chomp.chars.sort.reverse T = 'yuki' def f(x) completed = Array.new(x, false) idx = 0 5.times do |i| x.times do |j| next if completed[j] return false if N <= idx if T[i] < S[idx] || i == 4 completed[j] = true elsif T[i] == S[idx] # NOOP else return false end idx += 1 end end true end ok = 0 ng = N + 1 while (ok - ng).abs >= 2 x = (ok + ng) / 2 if f(x) ok = x else ng = x end end puts ok