結果

問題 No.443 GCD of Permutation
ユーザー nebukuro09nebukuro09
提出日時 2016-11-11 23:12:46
言語 PyPy2
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 303 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 76,668 KB
実行使用メモリ 108,936 KB
最終ジャッジ日時 2024-11-25 20:48:30
合計ジャッジ時間 15,225 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
107,316 KB
testcase_01 AC 220 ms
106,924 KB
testcase_02 AC 236 ms
107,304 KB
testcase_03 AC 231 ms
107,416 KB
testcase_04 AC 223 ms
106,904 KB
testcase_05 AC 219 ms
107,052 KB
testcase_06 AC 227 ms
107,532 KB
testcase_07 AC 235 ms
107,424 KB
testcase_08 AC 236 ms
107,584 KB
testcase_09 AC 231 ms
107,296 KB
testcase_10 AC 225 ms
106,792 KB
testcase_11 AC 227 ms
107,528 KB
testcase_12 AC 229 ms
107,696 KB
testcase_13 AC 216 ms
106,924 KB
testcase_14 AC 220 ms
107,324 KB
testcase_15 AC 428 ms
107,892 KB
testcase_16 AC 222 ms
107,296 KB
testcase_17 AC 327 ms
107,400 KB
testcase_18 AC 282 ms
107,416 KB
testcase_19 AC 224 ms
107,660 KB
testcase_20 AC 278 ms
107,548 KB
testcase_21 AC 426 ms
107,820 KB
testcase_22 AC 230 ms
107,764 KB
testcase_23 AC 228 ms
107,452 KB
testcase_24 AC 229 ms
107,404 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 501 ms
107,820 KB
testcase_28 AC 226 ms
107,048 KB
testcase_29 AC 887 ms
107,932 KB
testcase_30 AC 872 ms
108,584 KB
testcase_31 AC 966 ms
108,936 KB
権限があれば一括ダウンロードができます

ソースコード

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**3):
    random.shuffle(N)
    ans = gcd(ans, int(''.join(map(str,N))))
    if ans == 1:
        print 1
        exit()
print ans
0