結果

問題 No.537 ユーザーID
ユーザー bluemeganebluemegane
提出日時 2018-09-12 11:36:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 110,472 KB
実行使用メモリ 27,856 KB
最終ジャッジ日時 2024-06-26 09:55:18
合計ジャッジ時間 4,269 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
27,852 KB
testcase_01 AC 28 ms
25,820 KB
testcase_02 AC 27 ms
25,820 KB
testcase_03 AC 28 ms
25,928 KB
testcase_04 AC 28 ms
27,608 KB
testcase_05 AC 27 ms
23,860 KB
testcase_06 AC 29 ms
23,860 KB
testcase_07 AC 28 ms
25,952 KB
testcase_08 AC 29 ms
27,720 KB
testcase_09 AC 28 ms
27,608 KB
testcase_10 AC 27 ms
25,436 KB
testcase_11 AC 28 ms
23,472 KB
testcase_12 AC 28 ms
27,600 KB
testcase_13 AC 28 ms
25,568 KB
testcase_14 AC 28 ms
25,692 KB
testcase_15 AC 27 ms
23,728 KB
testcase_16 AC 28 ms
27,604 KB
testcase_17 AC 28 ms
27,724 KB
testcase_18 AC 37 ms
27,848 KB
testcase_19 AC 39 ms
26,184 KB
testcase_20 AC 38 ms
25,824 KB
testcase_21 AC 34 ms
25,648 KB
testcase_22 AC 40 ms
25,820 KB
testcase_23 AC 34 ms
23,736 KB
testcase_24 AC 30 ms
25,820 KB
testcase_25 AC 41 ms
27,732 KB
testcase_26 AC 40 ms
24,240 KB
testcase_27 AC 37 ms
25,548 KB
testcase_28 AC 34 ms
23,456 KB
testcase_29 AC 44 ms
25,884 KB
testcase_30 AC 41 ms
27,796 KB
testcase_31 AC 33 ms
27,856 KB
testcase_32 AC 33 ms
25,704 KB
testcase_33 AC 43 ms
23,604 KB
testcase_34 AC 36 ms
24,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Linq;
using System.Collections.Generic;
using System;

public class Hello
{
    public static void Main()
    {
        var hs = new HashSet<string>();
        var n = long.Parse(Console.ReadLine().Trim());
        var n2 = (int)Math.Sqrt(n);
        for (int i = 1; i <= n2; i++)
            if (n % i == 0)
            {
                hs.Add((n / i).ToString() + i.ToString());
                hs.Add( i.ToString() + (n / i).ToString());
            }
        Console.WriteLine(hs.Count());
    }
}
0