結果

問題 No.736 約比
ユーザー トミートミー
提出日時 2024-05-30 21:15:23
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 351 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 116,608 KB
最終ジャッジ日時 2024-12-20 21:38:12
合計ジャッジ時間 106,480 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,472 KB
testcase_01 AC 42 ms
109,696 KB
testcase_02 AC 42 ms
57,344 KB
testcase_03 AC 44 ms
109,824 KB
testcase_04 AC 44 ms
57,216 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 46 ms
57,472 KB
testcase_11 AC 44 ms
57,216 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 45 ms
56,960 KB
testcase_15 AC 44 ms
57,344 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 43 ms
57,344 KB
testcase_19 AC 43 ms
58,400 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 44 ms
57,728 KB
testcase_23 TLE -
testcase_24 AC 45 ms
57,472 KB
testcase_25 AC 42 ms
57,600 KB
testcase_26 AC 50 ms
63,616 KB
testcase_27 AC 45 ms
57,088 KB
testcase_28 AC 43 ms
57,856 KB
testcase_29 AC 464 ms
64,128 KB
testcase_30 AC 45 ms
111,104 KB
testcase_31 AC 50 ms
63,488 KB
testcase_32 TLE -
testcase_33 AC 41 ms
58,832 KB
testcase_34 TLE -
testcase_35 AC 42 ms
57,216 KB
testcase_36 AC 43 ms
109,568 KB
testcase_37 AC 43 ms
57,472 KB
testcase_38 AC 42 ms
110,976 KB
testcase_39 AC 49 ms
63,360 KB
testcase_40 AC 43 ms
57,216 KB
testcase_41 AC 43 ms
57,088 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 41 ms
51,712 KB
testcase_63 AC 43 ms
51,712 KB
testcase_64 AC 40 ms
116,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a:list):
    limit=min(a)
    ans=1
    for i in range(2,limit+1):
        f=True
        for j in range(len(a)):
            if a[j]%i!=0:
                f=False
                break
        if f:
            ans=i
    return ans

input()
a=list(map(int,input().split()))
n=gcd(a)
if n!=1:
    a=list(map(lambda x:x//n,a))
print(*a,sep=":")
0