結果

問題 No.443 GCD of Permutation
ユーザー kimiyukikimiyuki
提出日時 2016-11-12 19:39:23
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 8,796 KB
最終ジャッジ日時 2024-05-04 10:59:58
合計ジャッジ時間 31,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 908 ms
8,668 KB
testcase_01 AC 907 ms
8,664 KB
testcase_02 AC 909 ms
8,540 KB
testcase_03 AC 908 ms
8,664 KB
testcase_04 AC 908 ms
8,792 KB
testcase_05 AC 908 ms
8,668 KB
testcase_06 AC 907 ms
8,692 KB
testcase_07 AC 906 ms
8,664 KB
testcase_08 AC 907 ms
8,664 KB
testcase_09 AC 907 ms
8,540 KB
testcase_10 AC 908 ms
8,540 KB
testcase_11 AC 908 ms
8,668 KB
testcase_12 AC 908 ms
8,668 KB
testcase_13 AC 907 ms
8,664 KB
testcase_14 AC 910 ms
8,668 KB
testcase_15 AC 908 ms
8,540 KB
testcase_16 AC 908 ms
8,664 KB
testcase_17 AC 907 ms
8,668 KB
testcase_18 AC 909 ms
8,792 KB
testcase_19 AC 906 ms
8,664 KB
testcase_20 AC 908 ms
8,796 KB
testcase_21 AC 916 ms
8,664 KB
testcase_22 AC 906 ms
8,536 KB
testcase_23 AC 907 ms
8,540 KB
testcase_24 AC 908 ms
8,536 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 908 ms
8,796 KB
testcase_28 WA -
testcase_29 AC 909 ms
8,668 KB
testcase_30 AC 910 ms
8,792 KB
testcase_31 AC 910 ms
8,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python2
import time
import random
import fractions
n = list(raw_input())
d = int(''.join(n))
while time.clock() < 0.9:
    random.shuffle(n)
    x = int(''.join(n))
    d = fractions.gcd(d, x)
print(d)
0