結果

問題 No.736 約比
ユーザー mnrmnr
提出日時 2020-03-10 16:07:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 520 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-11-15 23:23:43
合計ジャッジ時間 108,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 29 ms
21,248 KB
testcase_02 AC 29 ms
17,444 KB
testcase_03 AC 29 ms
15,872 KB
testcase_04 AC 30 ms
16,256 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 29 ms
16,128 KB
testcase_11 AC 29 ms
17,568 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 29 ms
16,000 KB
testcase_15 AC 30 ms
17,568 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 29 ms
16,128 KB
testcase_19 AC 29 ms
17,444 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 29 ms
21,248 KB
testcase_23 TLE -
testcase_24 AC 31 ms
16,000 KB
testcase_25 AC 30 ms
17,444 KB
testcase_26 AC 33 ms
21,504 KB
testcase_27 AC 31 ms
16,256 KB
testcase_28 AC 30 ms
16,128 KB
testcase_29 TLE -
testcase_30 AC 30 ms
16,000 KB
testcase_31 AC 31 ms
17,568 KB
testcase_32 TLE -
testcase_33 AC 29 ms
17,572 KB
testcase_34 TLE -
testcase_35 AC 29 ms
17,440 KB
testcase_36 AC 30 ms
16,256 KB
testcase_37 AC 29 ms
17,440 KB
testcase_38 AC 29 ms
16,000 KB
testcase_39 AC 29 ms
17,572 KB
testcase_40 AC 29 ms
16,000 KB
testcase_41 AC 29 ms
17,440 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 29 ms
10,624 KB
testcase_63 AC 30 ms
10,752 KB
testcase_64 AC 29 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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:
        for j in range(N):
            if A[j] % i != 0:
                break
            if A[j] % i == 0 and j == N-1:
                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