結果

問題 No.312 置換処理
ユーザー bayashiko_rbayashiko_r
提出日時 2019-01-06 16:12:55
言語 C#(csc)
(csc 3.9.0)
結果
RE  
実行時間 -
コード長 425 bytes
コンパイル時間 3,868 ms
コンパイル使用メモリ 101,248 KB
実行使用メモリ 17,664 KB
最終ジャッジ日時 2024-05-03 03:14:39
合計ジャッジ時間 3,278 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 22 ms
17,536 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 22 ms
17,408 KB
testcase_23 AC 22 ms
17,536 KB
testcase_24 AC 21 ms
17,536 KB
testcase_25 AC 22 ms
17,664 KB
testcase_26 AC 22 ms
17,408 KB
testcase_27 AC 22 ms
17,408 KB
testcase_28 AC 22 ms
17,408 KB
testcase_29 AC 21 ms
17,408 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 AC 21 ms
17,536 KB
testcase_37 AC 21 ms
17,536 KB
testcase_38 AC 22 ms
17,664 KB
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 22 ms
17,408 KB
testcase_42 AC 22 ms
17,536 KB
testcase_43 AC 22 ms
17,536 KB
testcase_44 AC 22 ms
17,408 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program {
    static void Main(string[] args) {
        //入力
        int N = int.Parse(Console.ReadLine());

        //回答となる数字
        int ans = 3;

        //Nの約数を調べていく
        for (int i = 3; i <= N; i++) {
            if (N % i == 0) {
                ans = i;
                break;
            }
        }

        //出力
        Console.WriteLine(ans);
    }
}
0