結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
19,356 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 90 ms
12,416 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 92 ms
12,288 KB
testcase_05 AC 91 ms
12,288 KB
testcase_06 AC 92 ms
12,160 KB
testcase_07 AC 91 ms
12,160 KB
testcase_08 AC 92 ms
12,160 KB
testcase_09 AC 91 ms
12,160 KB
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 92 ms
12,288 KB
testcase_12 AC 94 ms
12,288 KB
testcase_13 AC 114 ms
21,376 KB
testcase_14 AC 133 ms
26,496 KB
testcase_15 AC 231 ms
57,216 KB
testcase_16 AC 1,153 ms
80,580 KB
testcase_17 AC 152 ms
33,408 KB
testcase_18 AC 87 ms
12,160 KB
testcase_19 AC 329 ms
99,428 KB
testcase_20 AC 738 ms
135,936 KB
testcase_21 AC 89 ms
12,288 KB
testcase_22 AC 88 ms
12,160 KB
testcase_23 TLE -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

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