結果

問題 No.933 おまわりさんこいつです
ユーザー wipexwipex
提出日時 2019-12-16 22:59:34
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 108,424 KB
最終ジャッジ日時 2024-07-02 20:46:28
合計ジャッジ時間 8,115 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
17,536 KB
testcase_01 AC 80 ms
12,032 KB
testcase_02 AC 88 ms
12,288 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 74 ms
12,288 KB
testcase_06 AC 74 ms
12,288 KB
testcase_07 AC 78 ms
12,288 KB
testcase_08 AC 78 ms
12,032 KB
testcase_09 AC 75 ms
12,288 KB
testcase_10 AC 77 ms
12,288 KB
testcase_11 AC 77 ms
12,288 KB
testcase_12 AC 80 ms
12,288 KB
testcase_13 AC 93 ms
20,992 KB
testcase_14 AC 118 ms
31,104 KB
testcase_15 AC 210 ms
79,744 KB
testcase_16 AC 1,052 ms
96,076 KB
testcase_17 AC 135 ms
33,408 KB
testcase_18 AC 80 ms
12,032 KB
testcase_19 AC 281 ms
96,660 KB
testcase_20 AC 622 ms
108,424 KB
testcase_21 AC 77 ms
12,160 KB
testcase_22 AC 81 ms
12,288 KB
testcase_23 TLE -
testcase_24 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.chomp.to_i
p = gets.chomp.split(" ").map(&:to_i)
s = p.inject(:*)
f = 1

def moji(s)
  zzz = s.to_s
  sl = s.to_s.length
  return zzz, sl
end

zzz, sl = moji(s)

while(f)
  if sl > 1
    yyy = 0
    for i in 0...sl
      yyy +=zzz[i].to_i
    end
    zzz, sl= moji(yyy)
  else
    yyy = zzz[0]
    f = nil
  end
end
p yyy.to_i
0