結果

問題 No.933 おまわりさんこいつです
ユーザー TSF_initialDTSF_initialD
提出日時 2020-03-30 11:55:41
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 128,768 KB
最終ジャッジ日時 2024-06-11 18:19:28
合計ジャッジ時間 7,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
17,792 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 88 ms
12,032 KB
testcase_03 AC 89 ms
12,288 KB
testcase_04 AC 89 ms
12,160 KB
testcase_05 AC 89 ms
12,160 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 AC 88 ms
12,288 KB
testcase_08 AC 88 ms
12,032 KB
testcase_09 AC 88 ms
12,032 KB
testcase_10 AC 88 ms
12,032 KB
testcase_11 AC 87 ms
12,032 KB
testcase_12 AC 88 ms
12,032 KB
testcase_13 AC 101 ms
20,992 KB
testcase_14 AC 113 ms
28,032 KB
testcase_15 AC 175 ms
58,496 KB
testcase_16 AC 703 ms
80,372 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 738 ms
128,768 KB
testcase_21 AC 88 ms
12,288 KB
testcase_22 AC 87 ms
12,160 KB
testcase_23 TLE -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = $stdin.gets.to_i
arr =gets.chomp.split(" ").map(&:to_i);
ans = 1
arr.each do |k|
    ans = ans * k
end

ans % 9 == 0 ? ans = 9 : ans = ans % 9
puts ans
0