結果
問題 | No.888 約数の総和 |
ユーザー | iwkjosec |
提出日時 | 2019-09-25 22:28:47 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 611 bytes |
コンパイル時間 | 2,078 ms |
コンパイル使用メモリ | 109,368 KB |
実行使用メモリ | 27,028 KB |
最終ジャッジ日時 | 2024-09-22 18:12:44 |
合計ジャッジ時間 | 3,965 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
24,568 KB |
testcase_01 | AC | 25 ms
26,644 KB |
testcase_02 | AC | 25 ms
24,576 KB |
testcase_03 | AC | 26 ms
22,200 KB |
testcase_04 | AC | 26 ms
26,528 KB |
testcase_05 | AC | 25 ms
24,828 KB |
testcase_06 | AC | 25 ms
24,436 KB |
testcase_07 | AC | 25 ms
24,316 KB |
testcase_08 | AC | 26 ms
24,604 KB |
testcase_09 | AC | 25 ms
24,368 KB |
testcase_10 | AC | 25 ms
26,612 KB |
testcase_11 | AC | 25 ms
24,736 KB |
testcase_12 | AC | 25 ms
24,484 KB |
testcase_13 | AC | 25 ms
26,656 KB |
testcase_14 | AC | 25 ms
24,864 KB |
testcase_15 | AC | 26 ms
24,568 KB |
testcase_16 | AC | 26 ms
27,028 KB |
testcase_17 | AC | 26 ms
26,652 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using static System.Console; using static System.Math; class Program { static void Main() { var N = int.Parse(ReadLine()); WriteLine(yakusuu(N).Sum()); } public static int[] yakusuu(int n)//O(sqrt N) { if (n < 1) return new int[0];//Assert var r = new List<int>(); for (int i = 1; i * i <= n; i++) { if (n % i == 0) { r.Add(i); if (i * i != n) r.Add(n / i); } } return r.ToArray(); } }