結果

問題 No.35 タイパー高橋
ユーザー quilt-tailsquilt-tails
提出日時 2016-11-03 18:15:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 98 ms / 5,000 ms
コード長 306 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-05-03 21:44:06
合計ジャッジ時間 1,071 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,032 KB
testcase_01 AC 96 ms
12,160 KB
testcase_02 AC 94 ms
12,032 KB
testcase_03 AC 93 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
success = 0
failed = 0
n.times do
  a, b = gets.chomp.split
  a = a.to_i
  b = b.count("a-z")
  need_time = b / 0.012
  a = need_time if a > need_time
  max_string = (a * 0.012).floor
  success += max_string
  failed += b - max_string
end
ans = []
ans.push(success, failed)
puts ans.join(" ")
0