結果

問題 No.2737 Compound Word
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 19:01:35
言語 Julia
(2.11.2)
結果
TLE  
実行時間 -
コード長 292 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 6,816 KB
実行使用メモリ 486,564 KB
最終ジャッジ日時 2024-11-29 04:26:49
合計ジャッジ時間 17,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 415 ms
245,384 KB
testcase_02 AC 350 ms
244,908 KB
testcase_03 AC 346 ms
244,028 KB
testcase_04 AC 348 ms
243,772 KB
testcase_05 AC 350 ms
244,340 KB
testcase_06 AC 353 ms
244,924 KB
testcase_07 AC 348 ms
244,800 KB
testcase_08 AC 347 ms
244,284 KB
testcase_09 AC 350 ms
244,408 KB
testcase_10 AC 348 ms
244,308 KB
testcase_11 AC 349 ms
244,288 KB
testcase_12 AC 346 ms
244,628 KB
testcase_13 AC 350 ms
244,284 KB
testcase_14 AC 354 ms
245,708 KB
testcase_15 AC 349 ms
244,156 KB
testcase_16 AC 350 ms
244,668 KB
testcase_17 AC 350 ms
245,056 KB
testcase_18 AC 348 ms
244,412 KB
testcase_19 AC 348 ms
244,284 KB
testcase_20 AC 352 ms
244,964 KB
testcase_21 AC 348 ms
244,984 KB
testcase_22 AC 353 ms
244,288 KB
testcase_23 AC 348 ms
245,052 KB
testcase_24 AC 351 ms
244,748 KB
testcase_25 AC 350 ms
245,052 KB
testcase_26 AC 346 ms
245,048 KB
testcase_27 AC 350 ms
244,860 KB
testcase_28 AC 352 ms
486,564 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