結果

問題 No.537 ユーザーID
ユーザー くれちーくれちー
提出日時 2017-07-01 00:45:56
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,985 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 117,212 KB
実行使用メモリ 28,532 KB
最終ジャッジ日時 2024-10-04 23:12:36
合計ジャッジ時間 3,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
26,156 KB
testcase_01 AC 29 ms
28,124 KB
testcase_02 AC 28 ms
26,224 KB
testcase_03 AC 29 ms
26,348 KB
testcase_04 AC 30 ms
26,224 KB
testcase_05 AC 28 ms
23,856 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 30 ms
26,096 KB
testcase_10 AC 30 ms
26,080 KB
testcase_11 AC 29 ms
28,256 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
26,348 KB
testcase_19 AC 43 ms
28,400 KB
testcase_20 AC 40 ms
28,376 KB
testcase_21 AC 37 ms
28,004 KB
testcase_22 AC 42 ms
26,288 KB
testcase_23 AC 37 ms
28,388 KB
testcase_24 AC 30 ms
26,084 KB
testcase_25 AC 41 ms
26,340 KB
testcase_26 AC 42 ms
26,096 KB
testcase_27 AC 38 ms
28,264 KB
testcase_28 AC 34 ms
26,128 KB
testcase_29 AC 46 ms
26,220 KB
testcase_30 AC 43 ms
28,404 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 #

#pragma warning disable IDE0011
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Numerics;
using static System.Convert;
using static System.Math;
using static Extentions;

class IO
{
    int idx;
    string[] line;

    public void R(params char[] sep) { line = Console.ReadLine().Split(sep); idx = 0; }
    public string S => line[idx++];
    public string[] Ss => line.Skip(idx++).ToArray();
    public char C => char.Parse(line[idx++]);
    public char[] Cs => line.Skip(idx++).Select(char.Parse).ToArray();
    public int I => int.Parse(line[idx++]);
    public int[] Is => line.Skip(idx++).Select(int.Parse).ToArray();
    public long L => long.Parse(line[idx++]);
    public long[] Ls => line.Skip(idx++).Select(long.Parse).ToArray();
    public double F => double.Parse(line[idx++]);
    public double[] Fs => line.Skip(idx++).Select(double.Parse).ToArray();
    public decimal D => decimal.Parse(line[idx++]);
    public decimal[] Ds => line.Skip(idx++).Select(decimal.Parse).ToArray();
    public BigInteger B => BigInteger.Parse(line[idx++]);
    public BigInteger[] Bs => line.Skip(idx++).Select(BigInteger.Parse).ToArray();

    public void Write(params object[] xs)
    {
        Console.Write(xs.First());
        foreach (var x in xs.Skip(1)) Console.Write(" " + x);
        Console.WriteLine();
    }
}

static class Extentions
{
}

static class Program
{
    static void Main()
    {
        Console.SetOut(new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false });
        Solve(new IO());
        Console.Out.Flush();
    }

    static void Solve(IO io)
    {
        io.R();
        var n = io.L;

        var set = new HashSet<string>();

        for (var i = 1L; i <= (long)Sqrt(n); i++)
        {
            if (n % i == 0) set.Add((n / i).ToString() + i);
        }

        var ans = set.Count;
        ans *= 2;
        if ((long)Sqrt(n) * (long)Sqrt(n) == n) ans--;

        io.Write(ans);
    }
}
0