結果
問題 | No.3079 アルベド |
ユーザー | さかぽん |
提出日時 | 2021-04-02 10:16:24 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 652 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 114,528 KB |
実行使用メモリ | 36,156 KB |
最終ジャッジ日時 | 2024-06-02 08:01:12 |
合計ジャッジ時間 | 6,783 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,249 ms
28,224 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
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(n => ps.TakeWhile(p => p <= n).Count())); } 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(); } }