結果

問題 No.2737 Compound Word
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 19:02:47
言語 Julia
(1.10.2)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 6,948 KB
実行使用メモリ 249,352 KB
最終ジャッジ日時 2024-11-29 04:29:33
合計ジャッジ時間 12,172 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 355 ms
245,024 KB
testcase_01 AC 354 ms
247,636 KB
testcase_02 AC 294 ms
248,388 KB
testcase_03 AC 292 ms
245,780 KB
testcase_04 AC 299 ms
247,108 KB
testcase_05 AC 298 ms
247,304 KB
testcase_06 AC 300 ms
249,256 KB
testcase_07 AC 293 ms
245,164 KB
testcase_08 AC 297 ms
247,504 KB
testcase_09 AC 292 ms
245,344 KB
testcase_10 AC 291 ms
247,620 KB
testcase_11 AC 299 ms
245,524 KB
testcase_12 AC 291 ms
247,516 KB
testcase_13 AC 309 ms
249,352 KB
testcase_14 AC 317 ms
244,984 KB
testcase_15 AC 300 ms
245,172 KB
testcase_16 AC 303 ms
244,836 KB
testcase_17 AC 301 ms
248,876 KB
testcase_18 AC 300 ms
249,096 KB
testcase_19 AC 302 ms
249,136 KB
testcase_20 AC 295 ms
247,372 KB
testcase_21 AC 299 ms
244,808 KB
testcase_22 AC 294 ms
245,244 KB
testcase_23 AC 297 ms
245,280 KB
testcase_24 AC 299 ms
244,900 KB
testcase_25 AC 303 ms
244,468 KB
testcase_26 AC 294 ms
247,844 KB
testcase_27 AC 300 ms
247,996 KB
testcase_28 AC 297 ms
248,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

function solve()
    n = readline() |> x->parse(Int, x)
    a = [readline() for _ in 1:n]
    s = Set()
    for i in 1:n
        for j in 1:n
            if i == j
                continue
            end
            push!(s, a[i]*a[j])
        end
    end
    println(length(s))
end
solve()
0