結果
問題 | No.443 GCD of Permutation |
ユーザー | |
提出日時 | 2016-11-11 23:31:56 |
言語 | Python2 (2.7.18) |
結果 |
TLE
|
実行時間 | - |
コード長 | 395 bytes |
コンパイル時間 | 119 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 15,136 KB |
最終ジャッジ日時 | 2024-05-04 03:11:44 |
合計ジャッジ時間 | 3,291 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
15,004 KB |
testcase_01 | AC | 19 ms
8,192 KB |
testcase_02 | AC | 19 ms
8,192 KB |
testcase_03 | AC | 20 ms
8,192 KB |
testcase_04 | AC | 19 ms
8,064 KB |
testcase_05 | AC | 18 ms
8,064 KB |
testcase_06 | AC | 20 ms
8,192 KB |
testcase_07 | AC | 27 ms
8,064 KB |
testcase_08 | AC | 19 ms
8,192 KB |
testcase_09 | AC | 19 ms
8,192 KB |
testcase_10 | AC | 18 ms
8,192 KB |
testcase_11 | AC | 20 ms
8,192 KB |
testcase_12 | AC | 18 ms
8,192 KB |
testcase_13 | AC | 19 ms
8,064 KB |
testcase_14 | AC | 23 ms
8,064 KB |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
from itertools import permutations from fractions import gcd g = input() digits = map(eval, set(str(g))) if len(digits) == 1: print g else: digit_len = len(str(g)) digits = map(eval, str(g)) S = [] G = g for p in permutations(digits, r=digit_len): d = int("".join(map(str, p))) if d in S: continue S += [d] G = gcd(G, d) if G == 1: break print G