結果

問題 No.443 GCD of Permutation
ユーザー kimiyukikimiyuki
提出日時 2016-11-11 23:16:48
言語 Python2
(2.7.18)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 200 bytes
コンパイル時間 553 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-11-25 20:59:23
合計ジャッジ時間 8,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 25 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python2
import random
import fractions
n = list(raw_input())
d = int(''.join(n))
for i in range(200):
    random.shuffle(n)
    x = int(''.join(n))
    d = fractions.gcd(d, x)
print(d)
0