結果
問題 | No.35 タイパー高橋 |
ユーザー | shi-mo |
提出日時 | 2016-04-14 23:57:20 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 85 ms / 5,000 ms |
コード長 | 185 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-10-04 09:07:43 |
合計ジャッジ時間 | 1,114 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 85 ms
12,160 KB |
testcase_01 | AC | 78 ms
12,288 KB |
testcase_02 | AC | 82 ms
12,288 KB |
testcase_03 | AC | 80 ms
12,160 KB |
コンパイルメッセージ
Syntax OK
ソースコード
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}"