結果

問題 No.35 タイパー高橋
ユーザー noriocnorioc
提出日時 2024-08-09 00:44:36
言語 Elixir
(1.16.2)
結果
AC  
実行時間 708 ms / 5,000 ms
コード長 610 bytes
コンパイル時間 2,658 ms
コンパイル使用メモリ 62,292 KB
実行使用メモリ 54,168 KB
最終ジャッジ日時 2024-08-09 00:44:44
合計ジャッジ時間 6,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 626 ms
53,800 KB
testcase_01 AC 659 ms
53,704 KB
testcase_02 AC 708 ms
54,168 KB
testcase_03 AC 666 ms
53,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def input, do: IO.read(:line) |> String.trim
  def ii, do: input() |> String.to_integer
  def li, do: input() |> String.split |> Enum.map(&String.to_integer/1)
  def yn(b), do: IO.puts(if b, do: "Yes", else: "No")

  def main do
    n = ii()
    for _ <- 1..n, reduce: {0, 0} do
      {hit, miss} ->
        [t, s] = input() |> String.split
        t = String.to_integer(t)
        # タイプできる文字数
        x = min(div(12 * t, 1000), String.length(s))
        {hit + x, miss + String.length(s) - x}
    end
    |> then(fn {hit, miss} -> IO.puts "#{hit} #{miss}" end)
  end
end
0