結果

問題 No.1140 EXPotentiaLLL!
ユーザー bluemeganebluemegane
提出日時 2020-09-08 20:06:37
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,021 bytes
コンパイル時間 3,941 ms
コンパイル使用メモリ 110,872 KB
実行使用メモリ 60,812 KB
最終ジャッジ日時 2024-11-30 05:58:52
合計ジャッジ時間 27,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 AC 1,905 ms
52,992 KB
testcase_04 AC 1,792 ms
51,712 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 1,454 ms
42,880 KB
testcase_09 AC 1,463 ms
42,880 KB
testcase_10 AC 1,451 ms
42,752 KB
testcase_11 AC 1,442 ms
42,752 KB
testcase_12 AC 1,445 ms
42,752 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System;

public class Hello
{
    static void Main()
    {
        var T = int.Parse(Console.ReadLine().Trim());
        var c = new bool[5000001];
        GeneratePrime(c);
        var ans = new int[T];
        for (int i = 0; i < T; i++)
        {
            string[] line = Console.ReadLine().Trim().Split(' ');
            var a = long.Parse(line[0]);
            var p = int.Parse(line[1]);
            if (!c[p]) ans[i] = -1;
            else ans[i] = a % p == 0 ? 0 : 1;
        }
        Console.WriteLine(string.Join("\n", ans));
    }

    static void GeneratePrime(bool[] p)
    {
        int prime;
        var m = p.Length;
        var sqrtMax = Math.Sqrt(m);
        var searchList = Enumerable.Range(2, m - 1).ToList();
        do
        {
            prime = searchList.First();
            p[prime] = true;
            searchList.RemoveAll(n => n % prime == 0);
        }
        while (prime < sqrtMax);
        foreach (var x in searchList)
            p[x] = true;
    }

}
0