結果

問題 No.1157 Many Quotients easy
ユーザー bluemeganebluemegane
提出日時 2020-09-08 07:24:16
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 114,992 KB
実行使用メモリ 27,828 KB
最終ジャッジ日時 2024-05-07 00:32:01
合計ジャッジ時間 2,712 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
27,704 KB
testcase_01 AC 29 ms
26,156 KB
testcase_02 AC 28 ms
27,604 KB
testcase_03 AC 30 ms
27,592 KB
testcase_04 AC 30 ms
25,688 KB
testcase_05 AC 30 ms
25,772 KB
testcase_06 AC 30 ms
25,528 KB
testcase_07 AC 30 ms
25,432 KB
testcase_08 AC 30 ms
25,940 KB
testcase_09 AC 29 ms
25,692 KB
testcase_10 AC 29 ms
27,828 KB
testcase_11 AC 29 ms
25,692 KB
testcase_12 AC 29 ms
25,816 KB
testcase_13 AC 30 ms
25,684 KB
testcase_14 AC 31 ms
25,780 KB
testcase_15 AC 29 ms
25,532 KB
testcase_16 AC 30 ms
23,484 KB
testcase_17 AC 32 ms
27,728 KB
testcase_18 AC 33 ms
25,568 KB
testcase_19 AC 31 ms
27,596 KB
testcase_20 AC 34 ms
26,072 KB
testcase_21 AC 30 ms
25,820 KB
testcase_22 AC 29 ms
27,704 KB
testcase_23 AC 29 ms
25,564 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
{
    static void Main()
    {
        var n = int.Parse(Console.ReadLine().Trim());
        getAns(n);
    }
    static void getAns(int n)
    {
        var hs = new HashSet<int>();
        for (int i = 1; i <= n; i++) hs.Add(n / i);
        Console.WriteLine(hs.Count());
    }
}
0