結果

問題 No.434 占い
ユーザー miraxialmiraxial
提出日時 2016-10-15 00:12:19
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 350 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 28,672 KB
最終ジャッジ日時 2024-11-22 08:30:21
合計ジャッジ時間 10,647 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
17,408 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 94 ms
12,032 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 91 ms
12,032 KB
testcase_06 AC 100 ms
12,544 KB
testcase_07 AC 93 ms
12,288 KB
testcase_08 RE -
testcase_09 WA -
testcase_10 AC 115 ms
12,800 KB
testcase_11 AC 104 ms
12,416 KB
testcase_12 AC 163 ms
12,544 KB
testcase_13 RE -
testcase_14 AC 398 ms
15,360 KB
testcase_15 RE -
testcase_16 RE -
testcase_17 TLE -
testcase_18 AC 320 ms
13,696 KB
testcase_19 AC 213 ms
12,544 KB
testcase_20 AC 793 ms
12,672 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 91 ms
12,160 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 AC 275 ms
14,080 KB
testcase_30 AC 658 ms
28,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a=[]
c=1
1.upto(1000) do |i|
  a<< c*=i
end
gets.to_i.times do
  n=gets.chomp.split("").map &:to_i
  c=n[0]+(n.length==1 ? 0:n[-1])
  1.upto(n.length-2) do |i|
    c+=n[i]*a[n.length-2]/a[n.length-2-i]/a[i-1]
  end
  c=c.to_s.split("").map(&:to_i).inject(:+)
  c=c.to_s.split("").map(&:to_i).inject(:+)
  p c.to_s.split("").map(&:to_i).inject(:+)
end
0