結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 508 ms
49,204 KB
testcase_01 AC 512 ms
87,144 KB
testcase_02 AC 509 ms
49,460 KB
testcase_03 AC 508 ms
87,788 KB
testcase_04 AC 524 ms
49,340 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 513 ms
49,080 KB
testcase_11 AC 510 ms
87,284 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 506 ms
48,944 KB
testcase_15 AC 507 ms
88,044 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 502 ms
48,944 KB
testcase_19 AC 519 ms
88,176 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 512 ms
49,364 KB
testcase_23 TLE -
testcase_24 AC 522 ms
49,200 KB
testcase_25 AC 519 ms
87,928 KB
testcase_26 AC 517 ms
48,948 KB
testcase_27 AC 516 ms
87,660 KB
testcase_28 AC 514 ms
49,208 KB
testcase_29 TLE -
testcase_30 AC 508 ms
49,596 KB
testcase_31 AC 510 ms
87,908 KB
testcase_32 TLE -
testcase_33 AC 507 ms
87,404 KB
testcase_34 TLE -
testcase_35 AC 509 ms
87,912 KB
testcase_36 AC 506 ms
48,952 KB
testcase_37 AC 524 ms
87,664 KB
testcase_38 AC 507 ms
49,328 KB
testcase_39 AC 564 ms
87,400 KB
testcase_40 AC 508 ms
49,208 KB
testcase_41 AC 513 ms
87,784 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 503 ms
43,704 KB
testcase_63 AC 505 ms
43,708 KB
testcase_64 AC 503 ms
92,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

def find1(a):
    n = min(a)
    for i in range(1,n+1):
        if n % i == 0:
            D.insert(0,i)
        if i == n:
            return D
    
def find2(d,a):
    for i in d:
        if np.all(np.array(a)%i==0):
            return i

N = int(input())
A = input().split()
for i in range(N):
    A[i] = int(A[i])
D = []
D = find1(A)
num = find2(D,A)
for i in range(N):
    A[i] = str(A[i]//num)

print(':'.join(A))
0