結果
問題 | No.677 10^Nの約数 |
ユーザー | isimiya |
提出日時 | 2018-05-23 21:26:34 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 316 bytes |
コンパイル時間 | 1,081 ms |
コンパイル使用メモリ | 108,384 KB |
実行使用メモリ | 29,428 KB |
最終ジャッジ日時 | 2024-06-28 16:27:58 |
合計ジャッジ時間 | 5,273 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 22 ms
23,296 KB |
testcase_01 | AC | 23 ms
18,304 KB |
testcase_02 | AC | 23 ms
17,920 KB |
testcase_03 | AC | 22 ms
17,920 KB |
testcase_04 | AC | 22 ms
18,048 KB |
testcase_05 | AC | 24 ms
17,920 KB |
testcase_06 | AC | 28 ms
17,920 KB |
testcase_07 | AC | 78 ms
18,048 KB |
testcase_08 | AC | 549 ms
18,048 KB |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Classmiya { static void Main() { string stdin = Console.ReadLine(); Int64 N = Int64.Parse(stdin); double d = Math.Pow(10,N); Int64 x = (Int64)d; Int64 xhalf = x / 2; for (Int64 i = 1; i <= xhalf; i++){ if(x % i == 0)Console.WriteLine(i); } Console.WriteLine(x); } }