結果

問題 No.2737 Compound Word
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 19:02:47
言語 Julia
(1.10.2)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 250,168 KB
最終ジャッジ日時 2024-05-06 19:02:59
合計ジャッジ時間 7,041 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
246,328 KB
testcase_01 AC 341 ms
245,512 KB
testcase_02 AC 337 ms
246,996 KB
testcase_03 AC 315 ms
244,336 KB
testcase_04 AC 344 ms
245,124 KB
testcase_05 AC 370 ms
245,228 KB
testcase_06 AC 343 ms
245,872 KB
testcase_07 AC 366 ms
245,016 KB
testcase_08 AC 339 ms
247,348 KB
testcase_09 AC 365 ms
249,492 KB
testcase_10 AC 341 ms
245,160 KB
testcase_11 AC 342 ms
249,132 KB
testcase_12 AC 320 ms
244,760 KB
testcase_13 AC 347 ms
248,876 KB
testcase_14 AC 346 ms
245,936 KB
testcase_15 AC 350 ms
250,168 KB
testcase_16 AC 341 ms
247,364 KB
testcase_17 AC 337 ms
246,764 KB
testcase_18 AC 347 ms
245,276 KB
testcase_19 AC 344 ms
244,788 KB
testcase_20 AC 338 ms
247,380 KB
testcase_21 AC 343 ms
245,688 KB
testcase_22 AC 339 ms
250,040 KB
testcase_23 AC 337 ms
245,552 KB
testcase_24 AC 342 ms
249,244 KB
testcase_25 AC 336 ms
247,448 KB
testcase_26 AC 337 ms
247,520 KB
testcase_27 AC 339 ms
249,372 KB
testcase_28 AC 337 ms
247,764 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