結果

問題 No.443 GCD of Permutation
ユーザー ​
提出日時 2016-11-12 00:18:23
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 15,264 KB
最終ジャッジ日時 2024-05-04 03:56:34
合計ジャッジ時間 4,506 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
15,004 KB
testcase_01 AC 20 ms
7,936 KB
testcase_02 AC 20 ms
7,936 KB
testcase_03 AC 18 ms
8,064 KB
testcase_04 AC 20 ms
8,064 KB
testcase_05 AC 20 ms
8,064 KB
testcase_06 AC 19 ms
8,064 KB
testcase_07 WA -
testcase_08 AC 19 ms
8,064 KB
testcase_09 WA -
testcase_10 AC 19 ms
8,064 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 19 ms
8,064 KB
testcase_14 AC 53 ms
8,192 KB
testcase_15 WA -
testcase_16 AC 23 ms
8,064 KB
testcase_17 AC 336 ms
8,064 KB
testcase_18 AC 52 ms
8,064 KB
testcase_19 AC 26 ms
8,064 KB
testcase_20 AC 48 ms
8,064 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 19 ms
8,064 KB
testcase_24 WA -
testcase_25 AC 50 ms
8,192 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 50 ms
8,192 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import permutations
from fractions import gcd

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 = str(g)
  for x in xrange(1, digit_len):
    d = int(str(g)[x:] + str(g)[:x])
    G = gcd(G, d)
    if G == 1:
      break
  if G != 1:
    sg = sg[::-1]
    for x in xrange(1, digit_len):
      d = int(sg[x:] + sg[:x])
      G = gcd(G, d)
      if G == 1:
        break
  if G != 1:
    sg = sg[::-1]
    sg = sg[::2] + sg[1::2]
    for x in xrange(1, digit_len):
      d = int(sg[x:] + sg[:x])
      G = gcd(G, d)
      if G == 1:
        break
  print G
0