結果

問題 No.443 GCD of Permutation
ユーザー ​
提出日時 2016-11-12 03:56:36
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 494 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 8,956 KB
最終ジャッジ日時 2024-05-04 09:03:31
合計ジャッジ時間 3,101 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
8,832 KB
testcase_01 AC 22 ms
8,704 KB
testcase_02 AC 21 ms
8,832 KB
testcase_03 AC 22 ms
8,700 KB
testcase_04 AC 21 ms
8,704 KB
testcase_05 AC 21 ms
8,828 KB
testcase_06 AC 21 ms
8,704 KB
testcase_07 WA -
testcase_08 AC 21 ms
8,576 KB
testcase_09 WA -
testcase_10 AC 20 ms
8,576 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 20 ms
8,572 KB
testcase_14 AC 52 ms
8,704 KB
testcase_15 WA -
testcase_16 AC 25 ms
8,704 KB
testcase_17 AC 79 ms
8,704 KB
testcase_18 AC 49 ms
8,828 KB
testcase_19 AC 27 ms
8,704 KB
testcase_20 AC 47 ms
8,832 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 22 ms
8,700 KB
testcase_24 WA -
testcase_25 AC 50 ms
8,832 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 51 ms
8,828 KB
testcase_29 AC 363 ms
8,956 KB
testcase_30 AC 375 ms
8,956 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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