結果

問題 No.933 おまわりさんこいつです
ユーザー gemmarogemmaro
提出日時 2019-11-30 08:12:31
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 179 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 135,552 KB
最終ジャッジ日時 2024-05-01 01:44:11
合計ジャッジ時間 8,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
19,104 KB
testcase_01 AC 96 ms
12,160 KB
testcase_02 AC 96 ms
12,288 KB
testcase_03 AC 98 ms
12,288 KB
testcase_04 AC 95 ms
12,160 KB
testcase_05 AC 96 ms
12,160 KB
testcase_06 AC 96 ms
12,160 KB
testcase_07 AC 97 ms
12,160 KB
testcase_08 AC 95 ms
12,416 KB
testcase_09 AC 95 ms
12,160 KB
testcase_10 AC 97 ms
12,416 KB
testcase_11 AC 98 ms
12,160 KB
testcase_12 AC 103 ms
12,288 KB
testcase_13 AC 122 ms
21,888 KB
testcase_14 AC 139 ms
28,928 KB
testcase_15 AC 240 ms
58,752 KB
testcase_16 AC 1,232 ms
80,480 KB
testcase_17 AC 162 ms
33,280 KB
testcase_18 AC 95 ms
12,288 KB
testcase_19 AC 338 ms
99,292 KB
testcase_20 AC 774 ms
135,552 KB
testcase_21 AC 93 ms
12,288 KB
testcase_22 AC 90 ms
12,288 KB
testcase_23 TLE -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

_ = gets.chomp.to_i
s = gets.chomp.split.map(&:to_i).inject { |prod, n| prod * n }
s = s.to_s.chars.map(&:to_i).sum until s.to_s.chars.size == 1
p s
0