結果
問題 | No.371 ぼく悪いプライムじゃないよ |
ユーザー | AreTrash |
提出日時 | 2016-05-14 09:00:03 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,108 bytes |
コンパイル時間 | 1,306 ms |
コンパイル使用メモリ | 114,728 KB |
実行使用メモリ | 34,112 KB |
最終ジャッジ日時 | 2024-10-06 02:09:06 |
合計ジャッジ時間 | 5,846 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 35 ms
25,256 KB |
testcase_02 | WA | - |
testcase_03 | AC | 34 ms
25,476 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 35 ms
25,256 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 35 ms
27,404 KB |
testcase_13 | AC | 35 ms
27,552 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 35 ms
25,524 KB |
testcase_22 | AC | 38 ms
27,460 KB |
testcase_23 | AC | 38 ms
25,396 KB |
testcase_24 | AC | 54 ms
27,504 KB |
testcase_25 | AC | 54 ms
25,720 KB |
testcase_26 | WA | - |
testcase_27 | AC | 46 ms
25,720 KB |
testcase_28 | AC | 54 ms
25,588 KB |
testcase_29 | AC | 218 ms
25,340 KB |
testcase_30 | AC | 60 ms
25,460 KB |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
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.
ソースコード
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); Predicate<long> isPrime = i =>{ foreach(var p in pl){ if(i % p == 0) return false; } return true; }; foreach(var p in pl.OrderByDescending(x => x)){ for(var i = h; i >= l; i--){ if(i % p == 0 && isPrime(i / p)){ Console.WriteLine(i); return; } } } //--------------------------------- } } 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); } } }