結果

問題 No.736 約比
ユーザー MaboyMaboy
提出日時 2021-06-22 11:59:32
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 194,160 KB
実行使用メモリ 21,536 KB
最終ジャッジ日時 2024-06-23 08:02:04
合計ジャッジ時間 11,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import Foundation
let n = Int(readLine()!)
var a = readLine()!.split(separator: " ").map{Int($0)!}
var x = [1]
let m = a.min()!
for i in 2...Int(sqrt(Double(m))) + 1{
    if m % i == 0{
        x += [i,m / i]
    }
}
x.sort()
for i in a{
    for j in x{
        if i % j != 0{
            x.remove(at: x.firstIndex(of: j)!)
        }
    }
}
a = a.map{$0 / x.max()!}
print(a.map{String($0)}.joined(separator: ":"))
0