結果

問題 No.933 おまわりさんこいつです
ユーザー 小野寺健小野寺健
提出日時 2021-11-10 08:19:21
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,168 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 108,360 KB
最終ジャッジ日時 2024-04-30 18:39:06
合計ジャッジ時間 6,585 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 82 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 84 ms
12,288 KB
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 84 ms
12,160 KB
testcase_08 AC 84 ms
12,160 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 AC 88 ms
12,288 KB
testcase_11 AC 82 ms
12,160 KB
testcase_12 AC 84 ms
12,288 KB
testcase_13 AC 89 ms
13,312 KB
testcase_14 AC 91 ms
14,720 KB
testcase_15 AC 106 ms
20,864 KB
testcase_16 AC 217 ms
65,896 KB
testcase_17 AC 130 ms
19,840 KB
testcase_18 AC 83 ms
12,160 KB
testcase_19 AC 173 ms
42,112 KB
testcase_20 AC 634 ms
108,360 KB
testcase_21 AC 87 ms
12,160 KB
testcase_22 AC 84 ms
12,160 KB
testcase_23 AC 763 ms
48,544 KB
testcase_24 AC 1,168 ms
49,064 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
P = gets.split(" ").map{|s| s.to_i}

k = 1
P.each {|x|
	k *= x == 0 ? 0 : (x % 9 == 0 ? 9 : x % 9)
}

puts k == 0 ? 0 : (k % 9 == 0 ? 9 : k % 9)
0