結果
問題 | No.35 タイパー高橋 |
ユーザー | siman |
提出日時 | 2015-01-11 04:43:43 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 102 ms / 5,000 ms |
コード長 | 297 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-06-13 03:43:10 |
合計ジャッジ時間 | 1,444 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 101 ms
12,160 KB |
testcase_01 | AC | 100 ms
12,288 KB |
testcase_02 | AC | 102 ms
12,288 KB |
testcase_03 | AC | 101 ms
12,416 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class A def initialize n = gets.chomp.to_i clear = 0 faild = 0 n.times do a, b = gets.chomp.split(' ') count = [((12 * a.to_i)/1000.0).floor, b.size].min clear += count faild += b.size - count end puts [clear, faild].join(' ') end end A.new