結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー mbanmban
提出日時 2017-04-12 16:15:43
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 1,188 bytes
コンパイル時間 921 ms
コンパイル使用メモリ 110,236 KB
実行使用メモリ 26,124 KB
最終ジャッジ日時 2024-07-18 10:21:49
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
24,244 KB
testcase_01 AC 21 ms
26,008 KB
testcase_02 AC 21 ms
23,856 KB
testcase_03 AC 20 ms
26,004 KB
testcase_04 AC 23 ms
23,772 KB
testcase_05 AC 20 ms
23,784 KB
testcase_06 AC 20 ms
25,868 KB
testcase_07 AC 19 ms
23,904 KB
testcase_08 AC 20 ms
23,564 KB
testcase_09 AC 20 ms
23,780 KB
testcase_10 AC 20 ms
23,860 KB
testcase_11 AC 19 ms
23,960 KB
testcase_12 AC 20 ms
23,904 KB
testcase_13 AC 19 ms
23,908 KB
testcase_14 AC 19 ms
23,908 KB
testcase_15 AC 20 ms
26,076 KB
testcase_16 AC 20 ms
22,068 KB
testcase_17 AC 20 ms
23,904 KB
testcase_18 AC 19 ms
25,948 KB
testcase_19 AC 20 ms
23,780 KB
testcase_20 AC 20 ms
25,616 KB
testcase_21 AC 20 ms
25,876 KB
testcase_22 AC 19 ms
23,656 KB
testcase_23 AC 20 ms
23,704 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

public class Magatro
{
    private int H, L;

    private void Scan()
    {
        string[] s = Console.ReadLine().Split(' ');
        H = int.Parse(s[1]);
        L = int.Parse(s[0]);
    }

    public void Solve()
    {
        Scan();
        int iMax = (int)Math.Sqrt(H);
        long max = -1;
        long ans = -1 ;
        for (int j = iMax; j >= 2; j--)
        {
            if (max > j)
            {
                break;
            }
            for (int i = H / j; i >= j; i--)
            {
                if (i * j < L)
                {
                    break;
                }
                long l=(long)i * j;
                long p = Prime(l);
                if (max < p)
                {
                    max = p;
                    ans = l;
                }
            }
        }
        Console.WriteLine(ans);
    }

    private long Prime(long l)
    {
        for (long i = 2; i * i <= l; i++)
        {
            if (l % i == 0) return i;
        }
        return l;
    }
}
0