結果

問題 No.2268 NGワード回避
ユーザー noriocnorioc
提出日時 2024-07-26 01:35:21
言語 Elixir
(1.16.2)
結果
AC  
実行時間 1,521 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 2,650 ms
コンパイル使用メモリ 61,520 KB
実行使用メモリ 59,804 KB
最終ジャッジ日時 2024-07-26 01:36:13
合計ジャッジ時間 44,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 647 ms
53,988 KB
testcase_01 AC 717 ms
53,432 KB
testcase_02 AC 640 ms
53,740 KB
testcase_03 AC 660 ms
54,556 KB
testcase_04 AC 653 ms
53,596 KB
testcase_05 AC 681 ms
55,444 KB
testcase_06 AC 647 ms
54,148 KB
testcase_07 AC 674 ms
54,204 KB
testcase_08 AC 639 ms
53,852 KB
testcase_09 AC 670 ms
53,916 KB
testcase_10 AC 640 ms
54,068 KB
testcase_11 AC 667 ms
53,796 KB
testcase_12 AC 648 ms
55,020 KB
testcase_13 AC 665 ms
54,060 KB
testcase_14 AC 633 ms
53,756 KB
testcase_15 AC 687 ms
53,476 KB
testcase_16 AC 656 ms
54,212 KB
testcase_17 AC 672 ms
54,612 KB
testcase_18 AC 643 ms
54,120 KB
testcase_19 AC 654 ms
54,040 KB
testcase_20 AC 654 ms
54,276 KB
testcase_21 AC 641 ms
54,248 KB
testcase_22 AC 683 ms
55,432 KB
testcase_23 AC 642 ms
54,116 KB
testcase_24 AC 679 ms
54,436 KB
testcase_25 AC 645 ms
54,300 KB
testcase_26 AC 663 ms
54,624 KB
testcase_27 AC 644 ms
54,288 KB
testcase_28 AC 674 ms
53,996 KB
testcase_29 AC 638 ms
54,632 KB
testcase_30 AC 670 ms
53,980 KB
testcase_31 AC 649 ms
54,996 KB
testcase_32 AC 676 ms
53,752 KB
testcase_33 AC 658 ms
54,032 KB
testcase_34 AC 672 ms
53,996 KB
testcase_35 AC 629 ms
53,996 KB
testcase_36 AC 675 ms
53,992 KB
testcase_37 AC 658 ms
54,532 KB
testcase_38 AC 686 ms
53,732 KB
testcase_39 AC 646 ms
53,988 KB
testcase_40 AC 672 ms
53,864 KB
testcase_41 AC 634 ms
53,884 KB
testcase_42 AC 661 ms
53,920 KB
testcase_43 AC 651 ms
54,008 KB
testcase_44 AC 635 ms
54,616 KB
testcase_45 AC 669 ms
54,172 KB
testcase_46 AC 643 ms
54,012 KB
testcase_47 AC 1,473 ms
58,100 KB
testcase_48 AC 1,470 ms
58,196 KB
testcase_49 AC 1,491 ms
57,572 KB
testcase_50 AC 1,521 ms
59,804 KB
testcase_51 AC 1,513 ms
56,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    n = ii()
    ans = for i <- 0..n-1 do
      s = String.codepoints(input())
      if Enum.at(s, i) == "a", do: "b", else: "a"
    end

    IO.puts ans
  end

  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: (if b, do: "Yes", else: "No")
end
0