結果

問題 No.933 おまわりさんこいつです
ユーザー 小野寺健小野寺健
提出日時 2021-11-09 12:44:48
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 130 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 108,500 KB
最終ジャッジ日時 2024-11-18 10:14:11
合計ジャッジ時間 6,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,160 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 78 ms
12,160 KB
testcase_05 AC 76 ms
12,416 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 76 ms
12,416 KB
testcase_10 AC 78 ms
12,160 KB
testcase_11 AC 78 ms
12,416 KB
testcase_12 AC 79 ms
12,416 KB
testcase_13 AC 85 ms
13,312 KB
testcase_14 AC 89 ms
14,720 KB
testcase_15 AC 99 ms
20,992 KB
testcase_16 AC 204 ms
65,896 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 624 ms
108,500 KB
testcase_21 AC 79 ms
12,416 KB
testcase_22 AC 77 ms
12,160 KB
testcase_23 AC 681 ms
48,596 KB
testcase_24 AC 1,063 ms
49,212 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

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

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