結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
18,980 KB
testcase_01 AC 89 ms
103,872 KB
testcase_02 AC 88 ms
18,976 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 AC 90 ms
12,032 KB
testcase_05 AC 95 ms
12,288 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 91 ms
12,032 KB
testcase_08 AC 92 ms
12,160 KB
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 93 ms
12,160 KB
testcase_12 AC 92 ms
12,288 KB
testcase_13 AC 113 ms
21,376 KB
testcase_14 AC 127 ms
28,544 KB
testcase_15 AC 228 ms
58,624 KB
testcase_16 AC 1,176 ms
80,488 KB
testcase_17 AC 154 ms
33,408 KB
testcase_18 AC 89 ms
12,160 KB
testcase_19 AC 331 ms
99,524 KB
testcase_20 AC 745 ms
135,424 KB
testcase_21 AC 89 ms
12,288 KB
testcase_22 AC 90 ms
12,032 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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