結果

問題 No.736 約比
ユーザー mnrmnr
提出日時 2020-03-10 15:10:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 516 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 95,236 KB
最終ジャッジ日時 2024-11-15 23:15:06
合計ジャッジ時間 124,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
51,288 KB
testcase_01 AC 493 ms
88,036 KB
testcase_02 AC 488 ms
51,288 KB
testcase_03 AC 489 ms
87,908 KB
testcase_04 AC 496 ms
51,288 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 504 ms
51,284 KB
testcase_11 AC 489 ms
88,292 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 499 ms
51,124 KB
testcase_15 AC 491 ms
88,164 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 489 ms
50,904 KB
testcase_19 AC 494 ms
87,936 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 497 ms
51,024 KB
testcase_23 TLE -
testcase_24 AC 501 ms
50,900 KB
testcase_25 AC 494 ms
88,160 KB
testcase_26 AC 505 ms
50,900 KB
testcase_27 AC 497 ms
88,552 KB
testcase_28 AC 504 ms
51,544 KB
testcase_29 TLE -
testcase_30 AC 491 ms
51,164 KB
testcase_31 AC 508 ms
87,652 KB
testcase_32 TLE -
testcase_33 AC 494 ms
88,300 KB
testcase_34 TLE -
testcase_35 AC 495 ms
88,420 KB
testcase_36 AC 492 ms
50,896 KB
testcase_37 AC 497 ms
88,160 KB
testcase_38 AC 501 ms
51,156 KB
testcase_39 AC 498 ms
88,040 KB
testcase_40 AC 495 ms
51,036 KB
testcase_41 AC 509 ms
87,904 KB
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 507 ms
44,072 KB
testcase_63 AC 514 ms
44,084 KB
testcase_64 AC 517 ms
95,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def find_p(arr1):
    n = np.min(arr1)
    for i in range(1,n+1):
        if n % i == 0:
            D.insert(0,i)
        if i == n:
            return D
    
def find_d(d,arr1):
    for i in d:
        if np.all(arr1%i==0):
            return arr1 // i

N = int(input())
A = input().split()
for i in range(N):
    A[i] = int(A[i])
arr = np.array(A)
D = []
D = find_p(arr)
preans = find_d(D,arr)
preans2 = list(preans)
for i in range(N):
    preans2[i] = str(preans2[i])
print(':'.join(preans2))
0