結果

問題 No.933 おまわりさんこいつです
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-06 12:22:01
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 115,672 KB
最終ジャッジ日時 2024-06-02 09:19:15
合計ジャッジ時間 6,657 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,032 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 74 ms
12,160 KB
testcase_05 AC 75 ms
12,288 KB
testcase_06 AC 76 ms
12,160 KB
testcase_07 AC 76 ms
12,160 KB
testcase_08 AC 76 ms
12,160 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 76 ms
12,032 KB
testcase_11 AC 79 ms
12,160 KB
testcase_12 AC 75 ms
12,160 KB
testcase_13 AC 79 ms
13,440 KB
testcase_14 AC 83 ms
14,848 KB
testcase_15 AC 98 ms
20,992 KB
testcase_16 AC 216 ms
73,772 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 614 ms
111,556 KB
testcase_21 AC 78 ms
12,160 KB
testcase_22 AC 77 ms
12,032 KB
testcase_23 AC 689 ms
54,292 KB
testcase_24 AC 1,026 ms
61,464 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def num_root(d); m = d % 9; m == 0 ? 9 : m; end
N = gets.to_i
P = gets.split.map(&:to_i)
puts num_root(P.inject(1){|s,v| s * num_root(v) })
0