結果

問題 No.443 GCD of Permutation
ユーザー nebukuro09nebukuro09
提出日時 2016-11-11 23:12:17
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 303 bytes
コンパイル時間 598 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 115,416 KB
最終ジャッジ日時 2024-05-04 03:05:58
合計ジャッジ時間 7,885 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
115,416 KB
testcase_01 AC 223 ms
106,808 KB
testcase_02 AC 292 ms
107,796 KB
testcase_03 AC 286 ms
107,936 KB
testcase_04 AC 228 ms
107,008 KB
testcase_05 AC 226 ms
106,776 KB
testcase_06 AC 285 ms
107,672 KB
testcase_07 AC 293 ms
107,920 KB
testcase_08 AC 283 ms
107,972 KB
testcase_09 AC 300 ms
107,916 KB
testcase_10 AC 213 ms
106,672 KB
testcase_11 AC 297 ms
107,796 KB
testcase_12 AC 281 ms
107,684 KB
testcase_13 AC 235 ms
106,856 KB
testcase_14 AC 228 ms
107,424 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
from fractions import gcd

N = raw_input()
if all(d==N[0] for d in N):
    print N
    exit()

ans = gcd(int(N), int(N[::-1]))
N = list(N)

for i in xrange(10**5):
    random.shuffle(N)
    ans = gcd(ans, int(''.join(map(str,N))))
    if ans == 1:
        print 1
        exit()
print ans
0