結果

問題 No.443 GCD of Permutation
ユーザー nebukuro09nebukuro09
提出日時 2016-11-11 23:12:32
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 303 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 217,400 KB
最終ジャッジ日時 2024-11-25 09:27:04
合計ジャッジ時間 24,874 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 258 ms
113,152 KB
testcase_01 AC 234 ms
215,040 KB
testcase_02 AC 256 ms
113,536 KB
testcase_03 AC 258 ms
216,020 KB
testcase_04 AC 230 ms
112,640 KB
testcase_05 AC 232 ms
216,192 KB
testcase_06 AC 253 ms
113,536 KB
testcase_07 AC 260 ms
115,132 KB
testcase_08 AC 255 ms
113,536 KB
testcase_09 AC 254 ms
216,448 KB
testcase_10 AC 232 ms
112,768 KB
testcase_11 AC 258 ms
217,400 KB
testcase_12 AC 256 ms
114,876 KB
testcase_13 AC 234 ms
112,384 KB
testcase_14 AC 235 ms
112,256 KB
testcase_15 TLE -
testcase_16 AC 243 ms
107,164 KB
testcase_17 TLE -
testcase_18 AC 299 ms
107,940 KB
testcase_19 AC 239 ms
107,264 KB
testcase_20 AC 293 ms
107,556 KB
testcase_21 TLE -
testcase_22 AC 271 ms
107,648 KB
testcase_23 AC 258 ms
107,816 KB
testcase_24 AC 262 ms
108,040 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 251 ms
107,264 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
権限があれば一括ダウンロードができます

ソースコード

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