結果

問題 No.443 GCD of Permutation
ユーザー algon_320algon_320
提出日時 2016-11-12 01:27:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 163 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-25 10:48:43
合計ジャッジ時間 2,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 4
other RE * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
import fractions

s = input()
g = int(s)

l = list(s)
for i in range(200):
    random.shuffle(l)
    g = fractions.gcd(g,int(''.join(l)))

print(g)

0