結果

問題 No.1651 Removing Cards
ユーザー kakel-sankakel-san
提出日時 2024-01-15 22:51:18
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 1,395 bytes
コンパイル時間 9,827 ms
コンパイル使用メモリ 166,616 KB
実行使用メモリ 205,048 KB
最終ジャッジ日時 2024-09-28 02:24:28
合計ジャッジ時間 18,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
30,976 KB
testcase_01 AC 65 ms
31,192 KB
testcase_02 AC 101 ms
35,584 KB
testcase_03 AC 69 ms
30,976 KB
testcase_04 AC 70 ms
30,976 KB
testcase_05 AC 69 ms
30,952 KB
testcase_06 AC 70 ms
30,976 KB
testcase_07 AC 71 ms
31,104 KB
testcase_08 AC 69 ms
31,232 KB
testcase_09 AC 162 ms
50,688 KB
testcase_10 AC 159 ms
50,688 KB
testcase_11 AC 163 ms
50,560 KB
testcase_12 AC 167 ms
50,688 KB
testcase_13 AC 164 ms
50,688 KB
testcase_14 AC 164 ms
50,688 KB
testcase_15 AC 319 ms
60,168 KB
testcase_16 AC 313 ms
59,776 KB
testcase_17 AC 307 ms
60,268 KB
testcase_18 AC 304 ms
59,520 KB
testcase_19 AC 313 ms
59,904 KB
testcase_20 AC 301 ms
59,776 KB
testcase_21 AC 303 ms
59,776 KB
testcase_22 AC 273 ms
62,440 KB
testcase_23 AC 166 ms
52,992 KB
testcase_24 AC 137 ms
44,800 KB
testcase_25 AC 272 ms
52,224 KB
testcase_26 AC 266 ms
51,840 KB
testcase_27 AC 302 ms
61,440 KB
testcase_28 AC 312 ms
61,440 KB
testcase_29 AC 316 ms
56,064 KB
testcase_30 AC 309 ms
56,064 KB
testcase_31 AC 309 ms
56,320 KB
testcase_32 AC 151 ms
46,336 KB
testcase_33 AC 158 ms
48,624 KB
testcase_34 AC 159 ms
205,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (108 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static string[] SList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => ReadLine()).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (k, q) = (c[0], c[1]);
        var list = new List<decimal>{ 1 };
        while (list[^1] <= 1_000_000_000_000_000_000)
        {
            list.Add(decimal.Round(list[^1] * k / (k - 1), MidpointRounding.ToPositiveInfinity));
        }
        var ans = new decimal[q];
        for (var i = 0; i < q; ++i)
        {
            var n = long.Parse(ReadLine());
            var pos = LowerBound(0, n, list);
            ans[i] = n < list[pos] ? list[pos - 1] : list[pos];
        }
        WriteLine(string.Join("\n", ans));
    }
    static int LowerBound(int left, long min, List<decimal> list)
    {
        if (list[left] >= min) return left;
        var ng = left;
        var ok = list.Count;
        while (ok - ng > 1)
        {
            var center = (ng + ok) / 2;
            if (list[center] < min) ng = center;
            else ok = center;
        }
        return ok;
    }
}
0