結果

問題 No.3006 A winter wonderland
ユーザー gigurururugigurururu
提出日時 2014-12-26 16:51:33
言語 Ruby
(3.3.0)
結果
AC  
実行時間 265 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-06-12 23:46:20
合計ジャッジ時間 4,474 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 113 ms
15,232 KB
testcase_02 AC 101 ms
14,080 KB
testcase_03 AC 265 ms
25,472 KB
testcase_04 AC 110 ms
14,848 KB
testcase_05 AC 93 ms
12,928 KB
testcase_06 AC 91 ms
13,184 KB
testcase_07 AC 83 ms
12,160 KB
testcase_08 AC 92 ms
13,056 KB
testcase_09 AC 92 ms
13,056 KB
testcase_10 AC 99 ms
13,568 KB
testcase_11 AC 123 ms
16,512 KB
testcase_12 AC 83 ms
12,160 KB
testcase_13 AC 84 ms
12,416 KB
testcase_14 AC 87 ms
12,928 KB
testcase_15 AC 82 ms
12,288 KB
testcase_16 AC 89 ms
13,056 KB
testcase_17 AC 92 ms
12,928 KB
testcase_18 AC 89 ms
12,672 KB
testcase_19 AC 95 ms
13,824 KB
testcase_20 AC 94 ms
13,056 KB
testcase_21 AC 92 ms
12,800 KB
testcase_22 AC 98 ms
13,824 KB
testcase_23 AC 99 ms
13,696 KB
testcase_24 AC 81 ms
12,032 KB
testcase_25 AC 87 ms
12,288 KB
testcase_26 AC 95 ms
13,056 KB
testcase_27 AC 88 ms
12,288 KB
testcase_28 AC 112 ms
15,488 KB
testcase_29 AC 82 ms
12,160 KB
testcase_30 AC 81 ms
12,032 KB
testcase_31 AC 107 ms
14,848 KB
testcase_32 AC 85 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def sqrt_enum(n)
  return to_enum(:sqrt_enum,n) unless block_given?
  list=[]
  while n>0
    list << n%100
    n/=100
  end
  list.reverse
  carry=0
  subcarry=0
  while list[0]||carry!=0
    n=(list.shift||0)+carry*100
    a=(1..10).find{|i|(subcarry*10+i)*i>n}-1
    yield a
    carry=n-(subcarry*10+a)*a
    subcarry=subcarry*10+a*2
  end
end

x=gets.chomp.chars.map(&:to_i)
p sqrt_enum(2).each_cons(3).find_index(x)
0