結果

問題 No.443 GCD of Permutation
ユーザー koyumeishikoyumeishi
提出日時 2016-11-11 23:44:47
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 852 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 11,568 KB
実行使用メモリ 45,596 KB
最終ジャッジ日時 2023-08-16 19:54:40
合計ジャッジ時間 8,807 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
15,432 KB
testcase_01 AC 272 ms
15,172 KB
testcase_02 AC 270 ms
15,256 KB
testcase_03 AC 269 ms
15,452 KB
testcase_04 AC 69 ms
15,276 KB
testcase_05 AC 75 ms
15,116 KB
testcase_06 AC 277 ms
15,228 KB
testcase_07 AC 270 ms
15,304 KB
testcase_08 AC 268 ms
15,432 KB
testcase_09 AC 271 ms
15,156 KB
testcase_10 AC 69 ms
15,024 KB
testcase_11 AC 268 ms
15,360 KB
testcase_12 AC 269 ms
15,236 KB
testcase_13 AC 67 ms
15,068 KB
testcase_14 AC 281 ms
23,972 KB
testcase_15 AC 271 ms
20,096 KB
testcase_16 AC 74 ms
16,480 KB
testcase_17 AC 270 ms
17,620 KB
testcase_18 RE -
testcase_19 AC 83 ms
17,652 KB
testcase_20 RE -
testcase_21 AC 273 ms
20,736 KB
testcase_22 AC 268 ms
15,284 KB
testcase_23 AC 268 ms
15,188 KB
testcase_24 AC 267 ms
15,236 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 275 ms
20,124 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:29: warning: assigned but unused variable - i
Main.rb:30: warning: assigned but unused variable - j
Syntax OK

ソースコード

diff #

#sorry
def main
  s = gets.chomp

  x = Time.now()

  def gcd(a,b)
    if b!=0 then
      return gcd(b, a%b)
    else
      return a
    end
  end

  len = s.length

  if len == 1 then
    puts s
    return
  end
  g = s.to_i
  n = g

  while true 
    y = Time.now()
    if y-x > 0.200 then
      break
    end
    for i in 0..10 do
      for j in 0...5 do
        a = rand(0...len)
        b = rand(0...len)
        u = (n/(10**a))%10
        v = (n/(10**b))%10

        n = n + (v-u)*(10**a) + (u-v)*(10**b)
      end
      g = gcd(g, n)
    end
    for i in 0..10 do
      for j in 0...4 do
        a = rand(0...len)
        b = rand(0...len)
        u = (n/(10**a))%10
        v = (n/(10**b))%10

        n = n + (v-u)*(10**a) + (u-v)*(10**b)
      end
      g = gcd(g, n)
    end
    if g == 1 then
      break
    end
  end

  puts g
end

main()
0