結果

問題 No.443 GCD of Permutation
ユーザー tktk_snsntktk_snsn
提出日時 2020-11-29 22:14:21
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 393 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 68,428 KB
最終ジャッジ日時 2024-09-13 02:10:32
合計ジャッジ時間 3,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,200 KB
testcase_01 AC 42 ms
54,904 KB
testcase_02 AC 42 ms
54,192 KB
testcase_03 AC 42 ms
54,864 KB
testcase_04 AC 42 ms
54,496 KB
testcase_05 AC 41 ms
54,588 KB
testcase_06 AC 42 ms
55,240 KB
testcase_07 AC 41 ms
54,940 KB
testcase_08 AC 42 ms
54,700 KB
testcase_09 AC 42 ms
55,104 KB
testcase_10 AC 42 ms
54,676 KB
testcase_11 AC 42 ms
54,504 KB
testcase_12 AC 42 ms
54,380 KB
testcase_13 AC 41 ms
53,676 KB
testcase_14 AC 47 ms
61,052 KB
testcase_15 AC 45 ms
60,528 KB
testcase_16 AC 46 ms
60,128 KB
testcase_17 AC 45 ms
61,120 KB
testcase_18 RE -
testcase_19 AC 47 ms
60,816 KB
testcase_20 RE -
testcase_21 AC 45 ms
59,884 KB
testcase_22 AC 41 ms
54,568 KB
testcase_23 AC 42 ms
55,032 KB
testcase_24 AC 42 ms
54,544 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from itertools import permutations
from math import gcd


def main():
    S = input()
    C = Counter(S)

    if len(C) == 1:
        return S

    keys = C.keys()
    res = int(S)
    for a in keys:
        a = int(a)
        for b in keys:
            b = int(b)
            if a > b:
                res = gcd(res, 9 * (a - b))
    return res


print(main())
0