結果

問題 No.443 GCD of Permutation
ユーザー kimiyukikimiyuki
提出日時 2016-11-12 19:45:23
言語 PyPy2
(7.3.15)
結果
WA  
実行時間 -
コード長 385 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 77,184 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-05-04 11:01:50
合計ジャッジ時間 32,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 912 ms
107,776 KB
testcase_01 AC 913 ms
107,776 KB
testcase_02 AC 912 ms
107,392 KB
testcase_03 AC 913 ms
107,264 KB
testcase_04 AC 914 ms
107,520 KB
testcase_05 AC 913 ms
107,904 KB
testcase_06 AC 913 ms
107,776 KB
testcase_07 AC 913 ms
107,520 KB
testcase_08 AC 912 ms
107,520 KB
testcase_09 AC 912 ms
107,648 KB
testcase_10 AC 913 ms
107,648 KB
testcase_11 AC 912 ms
107,660 KB
testcase_12 AC 913 ms
107,456 KB
testcase_13 AC 913 ms
107,296 KB
testcase_14 AC 916 ms
108,288 KB
testcase_15 AC 913 ms
108,032 KB
testcase_16 AC 914 ms
108,416 KB
testcase_17 AC 914 ms
107,680 KB
testcase_18 AC 913 ms
107,836 KB
testcase_19 AC 914 ms
107,776 KB
testcase_20 AC 914 ms
108,048 KB
testcase_21 AC 915 ms
107,648 KB
testcase_22 AC 913 ms
107,892 KB
testcase_23 AC 913 ms
107,176 KB
testcase_24 AC 913 ms
107,292 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 913 ms
107,776 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 914 ms
108,288 KB
testcase_31 AC 914 ms
108,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python2
import time
import random
import fractions
s = list(raw_input())
n = int(''.join(s))
d = n
while time.clock() < 0.9:
    i = random.randint(0, len(s)-1)
    j = random.randint(0, len(s)-1)
    n += (ord(s[j]) - ord(s[i])) * 10 ** (len(s)-1-i)
    n += (ord(s[i]) - ord(s[j])) * 10 ** (len(s)-1-j)
    s[i], s[j] = s[j], s[i]
    d = fractions.gcd(d, n)
print(d)
0