結果

問題 No.371 ぼく悪いプライムじゃないよ
ユーザー AreTrashAreTrash
提出日時 2016-05-14 09:32:21
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,208 bytes
コンパイル時間 2,732 ms
コンパイル使用メモリ 116,580 KB
実行使用メモリ 34,236 KB
最終ジャッジ日時 2024-10-11 21:53:15
合計ジャッジ時間 5,976 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
34,236 KB
testcase_01 AC 35 ms
25,504 KB
testcase_02 AC 34 ms
25,392 KB
testcase_03 AC 36 ms
23,220 KB
testcase_04 AC 34 ms
25,260 KB
testcase_05 AC 36 ms
27,432 KB
testcase_06 AC 34 ms
25,260 KB
testcase_07 AC 35 ms
25,264 KB
testcase_08 AC 35 ms
25,396 KB
testcase_09 AC 36 ms
25,496 KB
testcase_10 AC 36 ms
27,536 KB
testcase_11 AC 36 ms
25,244 KB
testcase_12 AC 36 ms
27,436 KB
testcase_13 AC 36 ms
25,520 KB
testcase_14 AC 36 ms
25,504 KB
testcase_15 AC 37 ms
27,552 KB
testcase_16 AC 35 ms
25,344 KB
testcase_17 AC 34 ms
25,264 KB
testcase_18 AC 36 ms
25,520 KB
testcase_19 AC 35 ms
25,240 KB
testcase_20 AC 38 ms
25,520 KB
testcase_21 AC 36 ms
25,260 KB
testcase_22 AC 38 ms
23,480 KB
testcase_23 AC 37 ms
25,648 KB
testcase_24 AC 52 ms
25,736 KB
testcase_25 AC 52 ms
25,492 KB
testcase_26 AC 49 ms
27,544 KB
testcase_27 AC 48 ms
25,228 KB
testcase_28 AC 51 ms
23,448 KB
testcase_29 AC 134 ms
25,372 KB
testcase_30 AC 55 ms
27,544 KB
testcase_31 AC 59 ms
25,364 KB
testcase_32 AC 57 ms
25,508 KB
testcase_33 AC 56 ms
25,232 KB
testcase_34 AC 62 ms
25,484 KB
testcase_35 AC 61 ms
25,376 KB
testcase_36 AC 50 ms
25,612 KB
testcase_37 AC 57 ms
27,544 KB
testcase_38 AC 53 ms
25,492 KB
testcase_39 AC 55 ms
25,624 KB
testcase_40 TLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace No371_1{
    public class Program{
        public static void Main(string[] args){
            var sr = new StreamReader();
            //---------------------------------
            var l = sr.Next<long>();
            var h = sr.Next<long>();

            var pl = new List<int>();
            var tl = Enumerable.Range(2, (int)Math.Sqrt(h)).ToList();
            var sqrt = (int)Math.Sqrt(Math.Sqrt(h));
            while(tl[0] <= sqrt){
                var p = tl[0];
                pl.Add(p);
                tl.RemoveAll(x => x % p == 0);
            }
            pl.AddRange(tl);

            Func<long, int, bool> isAns = (i, j) =>{
                foreach(var p in pl.TakeWhile(x => x < j)){
                    if(i % p == 0) return false;
                }
                return true;
            };

            foreach(var p in pl.OrderByDescending(x => x)){
                for(var i = h + h % 2 - 1; i >= l; i -= 2){
                    if(i != p && i % p == 0 && isAns(i / p, p)){
                        Console.WriteLine(i);
                        return;
                    }
                }
            }

            Console.WriteLine(h - h % 2);
            //---------------------------------
        }
    }

    public class StreamReader{
        private readonly char[] _c = {' '};
        private int _index = -1;
        private string[] _input = new string[0];

        public T Next<T>(){
            if(_index == _input.Length - 1){
                _index = -1;
                while(true){
                    string rl = Console.ReadLine();
                    if(rl == null){
                        if(typeof(T).IsClass) return default(T);
                        return (T)typeof(T).GetField("MinValue").GetValue(null);
                    }
                    if(rl != ""){
                        _input = rl.Split(_c, StringSplitOptions.RemoveEmptyEntries);
                        break;
                    }
                }
            }
            return (T)Convert.ChangeType(_input[++_index], typeof(T), System.Globalization.CultureInfo.InvariantCulture);
        }
    }
}
0