結果

問題 No.443 GCD of Permutation
ユーザー koyumeishikoyumeishi
提出日時 2016-11-11 22:48:54
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 443 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 41,344 KB
最終ジャッジ日時 2024-05-04 02:49:52
合計ジャッジ時間 26,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 989 ms
12,416 KB
testcase_01 AC 992 ms
12,416 KB
testcase_02 AC 990 ms
12,416 KB
testcase_03 AC 991 ms
12,416 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 92 ms
12,416 KB
testcase_06 AC 989 ms
12,416 KB
testcase_07 AC 991 ms
12,416 KB
testcase_08 AC 991 ms
12,544 KB
testcase_09 AC 990 ms
12,288 KB
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 991 ms
12,416 KB
testcase_12 AC 991 ms
12,288 KB
testcase_13 AC 90 ms
12,288 KB
testcase_14 TLE -
testcase_15 AC 994 ms
17,152 KB
testcase_16 AC 154 ms
13,440 KB
testcase_17 AC 990 ms
13,568 KB
testcase_18 AC 309 ms
21,376 KB
testcase_19 AC 102 ms
13,056 KB
testcase_20 RE -
testcase_21 AC 991 ms
16,384 KB
testcase_22 AC 991 ms
12,544 KB
testcase_23 AC 993 ms
12,544 KB
testcase_24 AC 994 ms
12,288 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 995 ms
14,976 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:24: warning: assigned but unused variable - i
Syntax OK

ソースコード

diff #

#sorry

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
g = s.to_i
n = g

while true 
  y = Time.now()
  if y-x > 0.900 then
    break
  end
  for i in 0..100 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)
    g = gcd(g, n)
  end
  if g== 1 then
    break
  end
end

puts g
0