結果

問題 No.35 タイパー高橋
ユーザー shi-moshi-mo
提出日時 2016-04-14 23:57:20
言語 Ruby
(3.3.0)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 185 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-15 01:38:53
合計ジャッジ時間 905 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

n = gets.to_i

total = 0
type = 0
n.times do
  t, s = gets.chomp!.split
  t = t.to_i
  total += s.length
  type += [ (12*t / 1000).ceil, s.length ].min
end
puts "#{type} #{total-type}"
0