結果

問題 No.197 手品
ユーザー yocto_sothothyocto_sothoth
提出日時 2020-11-29 03:24:59
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 312 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-09-13 01:48:52
合計ジャッジ時間 6,402 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 92 ms
12,160 KB
testcase_08 AC 91 ms
12,160 KB
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 91 ms
12,160 KB
testcase_11 AC 92 ms
12,160 KB
testcase_12 WA -
testcase_13 AC 87 ms
12,160 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 90 ms
12,160 KB
testcase_24 AC 91 ms
12,288 KB
testcase_25 AC 89 ms
12,160 KB
testcase_26 AC 91 ms
12,160 KB
testcase_27 WA -
testcase_28 AC 92 ms
12,288 KB
testcase_29 WA -
testcase_30 AC 88 ms
12,160 KB
testcase_31 RE -
testcase_32 AC 90 ms
12,288 KB
testcase_33 WA -
testcase_34 AC 92 ms
12,160 KB
testcase_35 AC 92 ms
12,160 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 88 ms
12,160 KB
testcase_39 WA -
testcase_40 AC 90 ms
12,160 KB
testcase_41 WA -
testcase_42 RE -
testcase_43 AC 89 ms
12,160 KB
testcase_44 WA -
testcase_45 AC 92 ms
12,288 KB
testcase_46 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s_before = gets.chomp
n = gets.to_i
s_after = gets.chomp

before_o = s_before.count('o')
after_o = s_after.count('o')

if before_o != after_o
  puts :SUCCESS
else
  e = before_o < 3 - before_o ? 'o' : 'x'
  d = (s_before.index(e) - s_after.index(e)).abs
  puts(d <= n && (n - d).even? ? :FAILURE : :SUCCESS)
end
0