結果
問題 | No.35 タイパー高橋 |
ユーザー | TANIGUCHI Kousuke |
提出日時 | 2015-05-15 10:42:08 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 283 bytes |
コンパイル時間 | 44 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-07-06 03:54:25 |
合計ジャッジ時間 | 883 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.to_i result = n.times.each_with_object({complete: 0, miss: 0}) {|i,o| t, s = gets.split.zip([:to_i, :size]).map {|v, m| v.send(m)} if (12 * t / 1000) >= s o[:complete] += 1 else o[:miss] += 1 end } puts "#{result[:complete]} #{result[:miss]}"