結果

問題 No.3079 アルベド
ユーザー さかぽんさかぽん
提出日時 2021-04-02 10:25:07
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 858 bytes
コンパイル時間 920 ms
コンパイル使用メモリ 107,904 KB
実行使用メモリ 24,576 KB
最終ジャッジ日時 2024-06-02 08:08:03
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
21,600 KB
testcase_01 AC 85 ms
24,576 KB
testcase_02 AC 62 ms
23,936 KB
testcase_03 AC 51 ms
23,168 KB
testcase_04 AC 73 ms
24,192 KB
testcase_05 AC 59 ms
23,680 KB
testcase_06 AC 69 ms
23,936 KB
testcase_07 AC 35 ms
21,204 KB
testcase_08 AC 38 ms
22,352 KB
testcase_09 AC 56 ms
23,552 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class G
{
	static void Main() => Console.WriteLine(Solve());
	static object Solve()
	{
		var t = int.Parse(Console.ReadLine());
		var ns = Array.ConvertAll(new bool[t], _ => int.Parse(Console.ReadLine()));

		var ps = GetPrimes(ns.Max());
		return string.Join("\n", ns.Select(GetCount));

		int GetCount(int n)
		{
			return Last(-1, ps.Length - 1, x => ps[x] <= n) + 1;
		}
	}

	static int[] GetPrimes(int n)
	{
		var b = new bool[n + 1];
		for (int p = 2; p * p <= n; ++p) if (!b[p]) for (int x = p * p; x <= n; x += p) b[x] = true;
		var r = new List<int>();
		for (int x = 2; x <= n; ++x) if (!b[x]) r.Add(x);
		return r.ToArray();
	}

	static int Last(int l, int r, Func<int, bool> f)
	{
		int m;
		while (l < r) if (f(m = r - (r - l - 1) / 2)) l = m; else r = m - 1;
		return l;
	}
}
0