結果

問題 No.933 おまわりさんこいつです
ユーザー kzyKTkzyKT
提出日時 2019-11-29 22:09:47
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 208 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 156,544 KB
最終ジャッジ日時 2024-11-20 23:22:46
合計ジャッジ時間 20,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
18,980 KB
testcase_01 AC 88 ms
112,384 KB
testcase_02 AC 86 ms
19,108 KB
testcase_03 AC 89 ms
120,960 KB
testcase_04 AC 94 ms
18,980 KB
testcase_05 AC 93 ms
156,544 KB
testcase_06 AC 94 ms
18,980 KB
testcase_07 AC 92 ms
119,424 KB
testcase_08 AC 93 ms
19,108 KB
testcase_09 AC 96 ms
12,288 KB
testcase_10 AC 95 ms
12,032 KB
testcase_11 AC 100 ms
12,416 KB
testcase_12 AC 113 ms
14,592 KB
testcase_13 AC 436 ms
29,568 KB
testcase_14 AC 788 ms
35,072 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 258 ms
45,696 KB
testcase_18 AC 94 ms
12,288 KB
testcase_19 AC 1,498 ms
112,128 KB
testcase_20 TLE -
testcase_21 AC 93 ms
12,032 KB
testcase_22 AC 94 ms
12,416 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x = 1
n = gets.to_i
a = gets.chomp.split(" ")
for i in 0..n-1
  x *= a[i].to_i
  while x>=10 and x%10==0
    x/=10
  end
end

y = 0
while x>0
  y+=x%10
  if y>=10
    y = y/10 + y%10
  end
  x/=10
end
print y
0