結果

問題 No.312 置換処理
ユーザー matsuyou1001matsuyou1001
提出日時 2020-01-07 13:10:05
言語 C#(csc)
(csc 3.9.0)
結果
TLE  
実行時間 -
コード長 322 bytes
コンパイル時間 3,590 ms
コンパイル使用メモリ 112,368 KB
実行使用メモリ 50,336 KB
最終ジャッジ日時 2024-11-23 00:56:12
合計ジャッジ時間 27,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
33,792 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 26 ms
48,320 KB
testcase_05 AC 26 ms
31,804 KB
testcase_06 AC 28 ms
31,664 KB
testcase_07 AC 33 ms
50,336 KB
testcase_08 AC 26 ms
31,540 KB
testcase_09 AC 26 ms
50,180 KB
testcase_10 AC 26 ms
33,808 KB
testcase_11 AC 28 ms
24,728 KB
testcase_12 AC 26 ms
24,820 KB
testcase_13 AC 26 ms
24,748 KB
testcase_14 AC 26 ms
26,896 KB
testcase_15 AC 26 ms
24,856 KB
testcase_16 AC 26 ms
24,800 KB
testcase_17 AC 27 ms
27,020 KB
testcase_18 AC 27 ms
26,988 KB
testcase_19 AC 27 ms
27,112 KB
testcase_20 AC 27 ms
24,936 KB
testcase_21 AC 28 ms
24,596 KB
testcase_22 AC 26 ms
22,840 KB
testcase_23 AC 26 ms
26,584 KB
testcase_24 AC 26 ms
26,848 KB
testcase_25 AC 26 ms
24,600 KB
testcase_26 AC 26 ms
24,724 KB
testcase_27 AC 27 ms
26,764 KB
testcase_28 AC 27 ms
24,852 KB
testcase_29 AC 26 ms
25,064 KB
testcase_30 TLE -
testcase_31 AC 27 ms
24,724 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 27 ms
24,852 KB
testcase_36 AC 26 ms
26,764 KB
testcase_37 AC 26 ms
26,984 KB
testcase_38 AC 26 ms
24,748 KB
testcase_39 AC 26 ms
26,900 KB
testcase_40 AC 27 ms
26,840 KB
testcase_41 AC 26 ms
26,844 KB
testcase_42 AC 26 ms
24,600 KB
testcase_43 AC 26 ms
24,856 KB
testcase_44 AC 27 ms
35,712 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.Linq;

class Program {
    static void Main() {
        var N = long.Parse(Console.ReadLine());
        var answer = Enumerable.Range(3, int.MaxValue - 3)
                               .First(n => N % n == 0);

        Console.WriteLine(answer);
#if DEBUG
        Console.Read();
#endif
    }
}
0