結果

問題 No.736 約比
ユーザー akiraarika932akiraarika932
提出日時 2019-02-04 18:45:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 911 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-12-25 23:27:33
合計ジャッジ時間 184,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 44 ms
16,000 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 379 ms
15,872 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 AC 50 ms
15,872 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 AC 29 ms
10,496 KB
testcase_63 AC 27 ms
10,496 KB
testcase_64 AC 28 ms
22,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math,sys
element_count = int(input())
number = input()
number = number.split()
reduction = []
greatest_common_measure = 0
ans_list = []
for i in range(element_count):
    figure = int(number[i])
    for i in range(figure):
        j = i + 1
        if figure % j == 0:
            reduction.append(j)
        j = 0
math_only_list = list(set(reduction))
math_only_list = sorted(math_only_list)
math_only_list.reverse()
count = len(math_only_list)
for i in range(count):
    if reduction.count(math_only_list[i]) == element_count:
        greatest_common_measure = int(math_only_list[i])
        break
for i in range(element_count):
    figure = int(number[i])
    ans = math.floor(figure / greatest_common_measure)
    ans = str(ans) + ':'
    ans_list.append(ans)
for i in range(element_count):
    if i == element_count - 1:
        ans_list[i] = ans_list[i].strip(':')
    sys.stdout.write(ans_list[i])
0