結果

問題 No.443 GCD of Permutation
ユーザー yuruhiyayuruhiya
提出日時 2021-01-24 17:21:22
言語 Crystal
(1.11.2)
結果
TLE  
実行時間 -
コード長 1,167 bytes
コンパイル時間 19,743 ms
コンパイル使用メモリ 261,268 KB
実行使用メモリ 489,244 KB
最終ジャッジ日時 2023-09-13 13:20:52
合計ジャッジ時間 21,857 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
4,980 KB
testcase_01 AC 2 ms
4,540 KB
testcase_02 AC 2 ms
4,900 KB
testcase_03 AC 3 ms
4,752 KB
testcase_04 AC 3 ms
4,844 KB
testcase_05 AC 2 ms
4,584 KB
testcase_06 AC 2 ms
4,840 KB
testcase_07 AC 3 ms
4,916 KB
testcase_08 AC 3 ms
4,816 KB
testcase_09 AC 3 ms
4,844 KB
testcase_10 AC 3 ms
4,896 KB
testcase_11 AC 2 ms
4,832 KB
testcase_12 AC 2 ms
4,832 KB
testcase_13 AC 3 ms
4,820 KB
testcase_14 AC 3 ms
4,700 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

struct Int
  def prime_factor : Array(Tuple(self, Int32))
    result = [] of Tuple(self, Int32)
    n = self
    typeof(self).new(2).upto(Math.sqrt(self).ceil) do |x|
      count = 0
      while n % x == 0
        n //= x
        count += 1
      end
      result << {x, count} if count > 0
    end
    result << {n, 1} if n != 1
    result
  end

  def divisors : Array(self)
    result = [] of self
    each_divisor do |d|
      result << d
    end
    result
  end

  def each_divisor(&)
    tmp = [] of self
    typeof(self).new(1).upto(self) do |x|
      break if x * x > self
      if self % x == 0
        yield x
        tmp << x
      end
    end
    (0...tmp.size).reverse_each do |i|
      yield self // tmp[i] if tmp[i] * tmp[i] < self
    end
  end
end

require "big"

s = read_line
n = s.size
if s.count(s[0]) == n
  puts s
  exit
end

p (0...n).to_a.combinations(2).map { |(i, j)|
  ("#{s[i]}#{s[j]}".to_i - "#{s[j]}#{s[i]}".to_i).abs
}.reduce(0) { |i, j| i.gcd(j) }.divisors.select { |x|
  s.to_big_i % x == 0
}.max
0