結果

問題 No.3020 サンシャイン◯崎
ユーザー simansiman
提出日時 2021-02-21 18:04:29
言語 Ruby
(3.3.0)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 94 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 11,868 KB
実行使用メモリ 21,328 KB
最終ジャッジ日時 2023-10-19 19:45:52
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
16,048 KB
testcase_01 AC 85 ms
16,048 KB
testcase_02 AC 87 ms
16,048 KB
testcase_03 AC 85 ms
16,048 KB
testcase_04 AC 84 ms
16,048 KB
testcase_05 AC 122 ms
21,328 KB
testcase_06 AC 84 ms
16,048 KB
testcase_07 AC 85 ms
16,048 KB
testcase_08 AC 99 ms
17,848 KB
testcase_09 AC 101 ms
17,928 KB
testcase_10 AC 122 ms
21,168 KB
testcase_11 AC 109 ms
19,684 KB
testcase_12 AC 124 ms
21,252 KB
testcase_13 AC 123 ms
21,088 KB
testcase_14 AC 121 ms
21,008 KB
testcase_15 AC 111 ms
20,084 KB
testcase_16 AC 110 ms
19,764 KB
testcase_17 AC 120 ms
21,088 KB
testcase_18 AC 123 ms
21,088 KB
testcase_19 AC 121 ms
21,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

S = gets.chomp
C = S.chars.tally
C.default = 0

puts %w(Y E A H !).map { |s| C[s] }.join(' ')
0