結果

問題 No.443 GCD of Permutation
ユーザー nebukuro09nebukuro09
提出日時 2016-11-11 23:12:32
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 303 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 76,680 KB
実行使用メモリ 113,408 KB
最終ジャッジ日時 2024-05-04 03:06:22
合計ジャッジ時間 10,789 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
113,408 KB
testcase_01 AC 202 ms
107,164 KB
testcase_02 AC 218 ms
107,776 KB
testcase_03 AC 221 ms
107,904 KB
testcase_04 AC 199 ms
107,392 KB
testcase_05 AC 200 ms
106,880 KB
testcase_06 AC 220 ms
107,776 KB
testcase_07 AC 228 ms
107,776 KB
testcase_08 AC 228 ms
107,776 KB
testcase_09 AC 225 ms
107,776 KB
testcase_10 AC 201 ms
107,140 KB
testcase_11 AC 228 ms
108,160 KB
testcase_12 AC 245 ms
107,828 KB
testcase_13 AC 217 ms
107,008 KB
testcase_14 AC 205 ms
107,136 KB
testcase_15 TLE -
testcase_16 AC 199 ms
107,792 KB
testcase_17 TLE -
testcase_18 AC 264 ms
107,952 KB
testcase_19 AC 222 ms
107,836 KB
testcase_20 AC 254 ms
107,708 KB
testcase_21 TLE -
testcase_22 AC 236 ms
108,440 KB
testcase_23 AC 224 ms
108,176 KB
testcase_24 AC 226 ms
108,476 KB
testcase_25 TLE -
testcase_26 TLE -
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**4):
    random.shuffle(N)
    ans = gcd(ans, int(''.join(map(str,N))))
    if ans == 1:
        print 1
        exit()
print ans
0