結果

問題 No.414 衝動
ユーザー claw88claw88
提出日時 2016-08-26 23:30:02
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,533 bytes
コンパイル時間 826 ms
コンパイル使用メモリ 105,344 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-11-08 16:30:22
合計ジャッジ時間 2,244 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
24,960 KB
testcase_01 AC 22 ms
17,536 KB
testcase_02 AC 23 ms
17,792 KB
testcase_03 AC 52 ms
25,728 KB
testcase_04 AC 22 ms
17,536 KB
testcase_05 AC 52 ms
25,984 KB
testcase_06 AC 52 ms
25,856 KB
testcase_07 AC 23 ms
17,664 KB
testcase_08 AC 40 ms
23,808 KB
testcase_09 AC 51 ms
25,600 KB
testcase_10 AC 23 ms
17,408 KB
testcase_11 AC 24 ms
17,828 KB
testcase_12 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;
using System.Text;
using System.Threading.Tasks;

namespace yuki414
{
    class Program
    {
        static void Main(string[] args)
        {
            long m = long.Parse(Console.ReadLine());

            if (m % 2 == 0)
            {
                Console.WriteLine(2+" "+m/2);
            }
            else
            {
                int n = (int)Math.Sqrt(m);
                var p = new List<int>();
                eratos(p, n);
                bool flag = true;
                foreach (var item in p)
                {
                    if (m % item == 0)
                    {
                        Console.WriteLine(item+" "+m/item);
                        flag = false;
                        break;
                    }
                }

                if (flag)
                {
                    Console.WriteLine(1+" "+m);
                }
            }
        }
        static void eratos(List<int> P, int n)
        {
            var a = new bool[n + 1];
            a[0] = a[1] = true;
            int i;
            for (i = 2; i * i <= n; i++)
            {
                if (a[i])
                {
                    P.Add(i);
                    int j = i << 1;
                    while (j <= n)
                    {
                        a[j] = true;
                        j = j + i;
                    }
                }
            }
            for (; i <= n; i++) if (!a[i]) P.Add(i);
        }
    }
}
0