結果

問題 No.537 ユーザーID
ユーザー mencottonmencotton
提出日時 2018-01-28 16:27:18
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 511 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 111,900 KB
実行使用メモリ 25,668 KB
最終ジャッジ日時 2024-06-09 08:27:15
合計ジャッジ時間 2,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
23,740 KB
testcase_01 AC 23 ms
23,468 KB
testcase_02 AC 22 ms
21,548 KB
testcase_03 AC 23 ms
23,600 KB
testcase_04 AC 24 ms
25,544 KB
testcase_05 AC 24 ms
25,560 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 23 ms
23,388 KB
testcase_10 AC 24 ms
23,516 KB
testcase_11 AC 24 ms
23,264 KB
testcase_12 AC 23 ms
23,728 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
23,392 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 31 ms
23,520 KB
testcase_22 AC 37 ms
25,460 KB
testcase_23 AC 31 ms
23,520 KB
testcase_24 WA -
testcase_25 AC 37 ms
23,648 KB
testcase_26 AC 38 ms
25,428 KB
testcase_27 AC 32 ms
25,412 KB
testcase_28 AC 28 ms
23,516 KB
testcase_29 AC 37 ms
23,744 KB
testcase_30 AC 35 ms
23,648 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

namespace _537
{
    class Program
    {
        static void Main(string[] args)
        {
            long n = long.Parse(Console.ReadLine()); long a = n;
            int ret = 1;
            for (long i = 2; i <= Math.Sqrt(a) + 1; i++)
            {
                int x = 1;
                while (n % i == 0)
                {
                    x++;
                    n /= i;
                }
                ret *= x;
            }
            Console.WriteLine(ret);
        }
    }
}
0