結果

問題 No.443 GCD of Permutation
ユーザー yuruhiyayuruhiya
提出日時 2021-01-24 17:29:59
言語 Crystal
(1.11.2)
結果
AC  
実行時間 322 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 12,006 ms
コンパイル使用メモリ 301,452 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-30 22:13:40
合計ジャッジ時間 14,427 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 53 ms
6,940 KB
testcase_15 AC 21 ms
6,940 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 AC 10 ms
6,940 KB
testcase_18 AC 196 ms
6,940 KB
testcase_19 AC 13 ms
6,944 KB
testcase_20 AC 222 ms
6,944 KB
testcase_21 AC 34 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 49 ms
6,944 KB
testcase_26 AC 44 ms
6,948 KB
testcase_27 AC 38 ms
6,944 KB
testcase_28 AC 53 ms
6,944 KB
testcase_29 AC 54 ms
6,940 KB
testcase_30 AC 52 ms
6,944 KB
testcase_31 AC 322 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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

require "big"

s = read_line
a = s.chars.map(&.to_i).sort
n = a.size

g = 0
(0...n).each { |i|
  (i + 1...n).each { |j|
    g = g.gcd(9*(a[j] - a[i])) if a[j] != a[i]
  }
}
if g == 0
  puts s
else
  puts s.to_big_i.gcd(g)
end
0