結果

問題 No.537 ユーザーID
ユーザー huffman56
提出日時 2022-12-31 10:31:08
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 458 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 109,420 KB
実行使用メモリ 25,788 KB
最終ジャッジ日時 2024-11-26 08:57:49
合計ジャッジ時間 2,708 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6 WA * 9 RE * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
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;

namespace _0446
{
    class Program
    {
        static void Main(string[] args)
        {
            var n = int.Parse(Console.ReadLine());
            var ans = 0;

            for (var i = 1; i <= n; i++)
            {
                if (n % i == 0)
                {
                    ans++;
                }
            }

            Console.WriteLine(ans);

         }
    }
}
0