結果

問題 No.1280 Beyond C
ユーザー bluemeganebluemegane
提出日時 2020-11-08 09:05:28
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,513 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 105,984 KB
実行使用メモリ 44,672 KB
最終ジャッジ日時 2024-07-22 15:01:19
合計ジャッジ時間 3,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,688 KB
testcase_01 AC 28 ms
18,560 KB
testcase_02 AC 28 ms
18,816 KB
testcase_03 AC 26 ms
17,920 KB
testcase_04 AC 26 ms
17,792 KB
testcase_05 AC 29 ms
18,560 KB
testcase_06 AC 28 ms
18,944 KB
testcase_07 AC 28 ms
18,688 KB
testcase_08 AC 28 ms
18,688 KB
testcase_09 AC 28 ms
18,432 KB
testcase_10 AC 30 ms
18,560 KB
testcase_11 AC 34 ms
19,200 KB
testcase_12 AC 31 ms
18,304 KB
testcase_13 AC 34 ms
19,328 KB
testcase_14 AC 36 ms
19,072 KB
testcase_15 AC 108 ms
34,304 KB
testcase_16 AC 85 ms
29,056 KB
testcase_17 AC 106 ms
35,200 KB
testcase_18 AC 150 ms
40,716 KB
testcase_19 AC 153 ms
41,476 KB
testcase_20 AC 170 ms
44,416 KB
testcase_21 AC 169 ms
44,672 KB
testcase_22 AC 171 ms
44,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class hello
{
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var m = int.Parse(line[1]);
        var c = long.Parse(line[2]);
        line = Console.ReadLine().Trim().Split(' ');
        var a = Array.ConvertAll(line, long.Parse);
        line = (Console.ReadLine().Trim() + " 0").Split(' ');
        var b = Array.ConvertAll(line, long.Parse);
        Array.Sort(b);
        getAns(n, m, c, a, b);
    }
    static void getAns(int n, int m, long c, long[] a, long[] b)
    {
        var count = 0L;
        for (int i = 0; i < n; i++)
        {
            var t = c / a[i];
            if (t * a[i] <= c) t++;
            var p = LowerBound(b, t);
            if (p != m + 1) count += m - p + 1;
        }
        var ans = (double)count / n / m;
        Console.WriteLine(ans);
    }
    public static int LowerBound<T>(T[] arr, int start, int end, T value, IComparer<T> comparer)
    {
        int low = start;
        int high = end;
        int mid;
        while (low < high)
        {
            mid = ((high - low) >> 1) + low;
            if (comparer.Compare(arr[mid], value) < 0)
                low = mid + 1;
            else
                high = mid;
        }
        return low;
    }
    public static int LowerBound<T>(T[] arr, T value) where T : IComparable
    {
        return LowerBound(arr, 0, arr.Length, value, Comparer<T>.Default);
    }
}
0