結果
問題 | No.537 ユーザーID |
ユーザー | TrimozGit |
提出日時 | 2017-09-05 16:26:54 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 868 bytes |
コンパイル時間 | 920 ms |
コンパイル使用メモリ | 104,320 KB |
実行使用メモリ | 18,304 KB |
最終ジャッジ日時 | 2024-11-06 22:19:52 |
合計ジャッジ時間 | 3,378 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 24 ms
17,536 KB |
testcase_03 | WA | - |
testcase_04 | AC | 23 ms
17,920 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 24 ms
17,408 KB |
testcase_10 | AC | 24 ms
17,664 KB |
testcase_11 | AC | 24 ms
17,664 KB |
testcase_12 | AC | 24 ms
17,536 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 35 ms
17,408 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
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.
ソースコード
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace yukicorder537 { class Program { static void Main(string[] args) { // 入力 Int64 N = long.Parse(Console.ReadLine()); // 割れる組み合わせの確認 Int64 ans = divPattern(N); Console.WriteLine(ans); Console.ReadKey(); } static Int64 divPattern(Int64 N) { var max = Math.Sqrt(N); List<string> ans = new List<string>(); ans.Add(string.Format("{0}{1}" , 1 , N)); if (ans.Contains(string.Format("{1}{0}" , 1 , N)) == false){ ans.Add(string.Format("{1}{0}" , 1 , N)); } for (Int64 i = 2; i <= max; i++) { if (N % i == 0) { string x = i + (N / i).ToString(); if (ans.Contains(x) == false) { ans.Add(x); } } } return ans.Count; } } }