結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
114,888 KB
testcase_01 AC 232 ms
214,964 KB
testcase_02 AC 302 ms
114,720 KB
testcase_03 AC 312 ms
115,084 KB
testcase_04 AC 235 ms
114,372 KB
testcase_05 AC 234 ms
215,080 KB
testcase_06 AC 294 ms
114,652 KB
testcase_07 AC 310 ms
115,020 KB
testcase_08 AC 308 ms
114,784 KB
testcase_09 AC 308 ms
217,020 KB
testcase_10 AC 235 ms
114,008 KB
testcase_11 AC 308 ms
216,608 KB
testcase_12 AC 300 ms
114,704 KB
testcase_13 AC 231 ms
216,768 KB
testcase_14 AC 236 ms
113,732 KB
testcase_15 TLE -
testcase_16 AC 239 ms
114,484 KB
testcase_17 TLE -
testcase_18 AC 298 ms
107,804 KB
testcase_19 AC 236 ms
107,284 KB
testcase_20 AC 290 ms
107,564 KB
testcase_21 TLE -
testcase_22 AC 429 ms
108,048 KB
testcase_23 AC 332 ms
108,092 KB
testcase_24 AC 347 ms
107,712 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 237 ms
106,908 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**5):
    random.shuffle(N)
    ans = gcd(ans, int(''.join(map(str,N))))
    if ans == 1:
        print 1
        exit()
print ans
0