結果

問題 No.443 GCD of Permutation
コンテスト
ユーザー
提出日時 2016-11-12 03:56:36
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 494 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 165 ms
コンパイル使用メモリ 77,480 KB
最終ジャッジ日時 2025-12-03 22:42:02
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17 WA * 11
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

from itertools import permutations
from fractions import gcd
import random

g = input()

digits = sorted(map(eval, str(g)))

if len(set(digits)) == 1:
  print g
elif 1 in digits or (any([x != 0 and x%2 == 0 for x in digits]) and any([x%3 == 0 for x in digits])):
  print 1
else:
  digit_len = len(str(g))
  S = []
  G = g
  sg = list(str(g))
  for x in xrange(100):
    if G != 1:
      random.shuffle(sg)
      d = int("".join(sg))
      G = gcd(G, d)
      if G == 1:
        break
  print G
0