結果
問題 | No.371 ぼく悪いプライムじゃないよ |
ユーザー | mban |
提出日時 | 2017-01-04 03:29:31 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,172 bytes |
コンパイル時間 | 3,329 ms |
コンパイル使用メモリ | 102,528 KB |
実行使用メモリ | 34,176 KB |
最終ジャッジ日時 | 2024-05-09 17:05:13 |
合計ジャッジ時間 | 4,499 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 23 ms
34,176 KB |
testcase_01 | AC | 24 ms
17,920 KB |
testcase_02 | AC | 24 ms
17,792 KB |
testcase_03 | AC | 23 ms
17,792 KB |
testcase_04 | AC | 23 ms
17,792 KB |
testcase_05 | AC | 23 ms
17,792 KB |
testcase_06 | AC | 23 ms
17,792 KB |
testcase_07 | AC | 23 ms
17,792 KB |
testcase_08 | AC | 24 ms
18,048 KB |
testcase_09 | AC | 24 ms
17,792 KB |
testcase_10 | AC | 24 ms
17,536 KB |
testcase_11 | AC | 24 ms
17,664 KB |
testcase_12 | AC | 23 ms
17,792 KB |
testcase_13 | AC | 24 ms
17,536 KB |
testcase_14 | AC | 23 ms
17,792 KB |
testcase_15 | AC | 23 ms
17,792 KB |
testcase_16 | AC | 24 ms
17,664 KB |
testcase_17 | AC | 23 ms
17,536 KB |
testcase_18 | AC | 20 ms
17,920 KB |
testcase_19 | AC | 19 ms
17,792 KB |
testcase_20 | AC | 160 ms
18,048 KB |
testcase_21 | AC | 47 ms
17,792 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
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; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using System.Text.RegularExpressions; using System.Linq; class Magatro { static void Main() { int L, H; string[] s = Console.ReadLine().Split(' '); L = int.Parse(s[0]); H = int.Parse(s[1]); int rootH = (int)Math.Sqrt(H); int ans = 0; int max=0; for(int i = 2; i <= rootH; i++) { for(int j = i; j <= H / i; j++) { if (i * j < L) { continue; } int mins = MinSoinsu(i * j); if (max <= mins) { max = mins; ans = i * j; } } } Console.WriteLine(ans); } static int MinSoinsu(int n) { if (n % 2 == 0) { return 2; } for(int i = 3; i <= Math.Sqrt(n); i += 2) { if (n % i == 0) { return i; } } return n; } }