結果

問題 No.736 約比
ユーザー MaboyMaboy
提出日時 2021-06-22 12:45:25
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 257 bytes
コンパイル時間 9,865 ms
コンパイル使用メモリ 187,696 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-06-23 08:49:20
合計ジャッジ時間 12,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import Foundation
let n = Int(readLine()!)
let s = readLine()!
var a = s.split(separator: " ").map{Int($0)!}
var (i,j) = (a.sorted()[0],a.sorted()[1])
while j != 0{
    (i,j) = (j,i%j)
}
a = a.map{$0 / abs(i)}
print(a.map{String($0)}.joined(separator: ":"))
0