結果

問題 No.501 穴と文字列
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2020-02-05 16:43:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 16,196 KB
最終ジャッジ日時 2023-10-23 22:40:16
合計ジャッジ時間 4,175 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
16,196 KB
testcase_01 AC 92 ms
16,192 KB
testcase_02 AC 79 ms
16,092 KB
testcase_03 AC 82 ms
16,092 KB
testcase_04 AC 83 ms
16,092 KB
testcase_05 AC 79 ms
16,092 KB
testcase_06 AC 79 ms
16,092 KB
testcase_07 AC 79 ms
16,092 KB
testcase_08 AC 79 ms
16,092 KB
testcase_09 AC 79 ms
16,092 KB
testcase_10 AC 78 ms
16,092 KB
testcase_11 AC 78 ms
16,092 KB
testcase_12 AC 78 ms
16,092 KB
testcase_13 AC 79 ms
16,092 KB
testcase_14 AC 80 ms
16,092 KB
testcase_15 AC 80 ms
16,092 KB
testcase_16 AC 80 ms
16,092 KB
testcase_17 AC 79 ms
16,092 KB
testcase_18 AC 85 ms
16,092 KB
testcase_19 AC 85 ms
16,136 KB
testcase_20 AC 87 ms
16,096 KB
testcase_21 AC 89 ms
16,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def max(a,b); (a <=> b) >= 0 ? a : b; end
N, D = gets.split.map(&:to_i)

ans = (0 .. N).inject([-1,-1,-1]) do |s, b|
  a = D - 2 * b
  c = N - D + b
  if a >= 0 && b >= 0 && c >= 0
    max(s,[a,b,c])
  else
    s
  end
end

puts 'A' * ans[0] + 'B' * ans[1] + 'C' * ans[2]
0