結果

問題 No.1362 [Zelkova 8th Tune] Black Sheep
ユーザー maguroflymagurofly
提出日時 2021-01-23 00:22:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 247 ms / 1,000 ms
コード長 122 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 39,168 KB
最終ジャッジ日時 2024-06-09 05:27:53
合計ジャッジ時間 8,114 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,288 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 91 ms
12,288 KB
testcase_03 AC 90 ms
12,288 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 89 ms
12,032 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 94 ms
12,160 KB
testcase_09 AC 90 ms
12,160 KB
testcase_10 AC 87 ms
12,160 KB
testcase_11 AC 88 ms
12,032 KB
testcase_12 AC 91 ms
12,160 KB
testcase_13 AC 223 ms
34,816 KB
testcase_14 AC 216 ms
33,152 KB
testcase_15 AC 106 ms
13,952 KB
testcase_16 AC 153 ms
21,888 KB
testcase_17 AC 239 ms
36,992 KB
testcase_18 AC 164 ms
25,216 KB
testcase_19 AC 244 ms
38,272 KB
testcase_20 AC 177 ms
27,648 KB
testcase_21 AC 163 ms
25,728 KB
testcase_22 AC 222 ms
34,304 KB
testcase_23 AC 243 ms
39,040 KB
testcase_24 AC 247 ms
39,040 KB
testcase_25 AC 242 ms
39,040 KB
testcase_26 AC 241 ms
39,168 KB
testcase_27 AC 239 ms
38,912 KB
testcase_28 AC 247 ms
38,912 KB
testcase_29 AC 241 ms
39,040 KB
testcase_30 AC 243 ms
39,168 KB
testcase_31 AC 237 ms
39,040 KB
testcase_32 AC 245 ms
39,040 KB
testcase_33 AC 242 ms
39,040 KB
testcase_34 AC 245 ms
39,040 KB
testcase_35 AC 86 ms
12,160 KB
testcase_36 AC 87 ms
12,032 KB
testcase_37 AC 90 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.chomp
S.chars.tally.each do |c, count|
    next unless count == 1
    puts "#{S.index(c) + 1} #{c}"
    break
end
0