結果
問題 | No.888 約数の総和 |
ユーザー |
![]() |
提出日時 | 2019-10-11 17:46:25 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 696 bytes |
コンパイル時間 | 1,763 ms |
コンパイル使用メモリ | 112,384 KB |
実行使用メモリ | 49,864 KB |
最終ジャッジ日時 | 2024-11-24 23:29:21 |
合計ジャッジ時間 | 44,675 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 TLE * 14 |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; using System.Linq; using System.Collections.Generic; using System.IO; class MyClass { public static void Solve() { var N = long.Parse(Console.ReadLine()); long sum = 0; for (int i = 1; i * i <= N; i++) { if (N % i == 0) { sum += i; if (i * i != N) { sum += N / i; } } } Console.WriteLine(sum); } public static void Main() { var sw = new StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false }; Console.SetOut(sw); Solve(); Console.Out.Flush(); } }