結果

問題 No.2737 Compound Word
ユーザー YU HiroseYU Hirose
提出日時 2024-05-06 19:01:35
言語 Julia
(1.10.2)
結果
TLE  
実行時間 -
コード長 292 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 7,068 KB
実行使用メモリ 380,900 KB
最終ジャッジ日時 2024-05-06 19:01:52
合計ジャッジ時間 6,679 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 331 ms
248,872 KB
testcase_02 AC 335 ms
248,852 KB
testcase_03 AC 324 ms
249,896 KB
testcase_04 AC 359 ms
248,836 KB
testcase_05 AC 331 ms
245,920 KB
testcase_06 AC 345 ms
244,568 KB
testcase_07 AC 323 ms
244,140 KB
testcase_08 AC 325 ms
245,072 KB
testcase_09 AC 323 ms
249,132 KB
testcase_10 AC 348 ms
248,860 KB
testcase_11 AC 327 ms
247,844 KB
testcase_12 AC 324 ms
245,240 KB
testcase_13 AC 350 ms
249,756 KB
testcase_14 AC 324 ms
244,956 KB
testcase_15 AC 325 ms
248,248 KB
testcase_16 AC 335 ms
247,256 KB
testcase_17 AC 357 ms
249,880 KB
testcase_18 AC 332 ms
246,512 KB
testcase_19 AC 329 ms
247,232 KB
testcase_20 AC 356 ms
247,224 KB
testcase_21 AC 332 ms
244,964 KB
testcase_22 AC 329 ms
246,084 KB
testcase_23 AC 328 ms
249,288 KB
testcase_24 AC 346 ms
248,004 KB
testcase_25 AC 324 ms
248,772 KB
testcase_26 AC 322 ms
247,336 KB
testcase_27 AC 348 ms
246,692 KB
testcase_28 AC 327 ms
380,900 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