結果

問題 No.312 置換処理
ユーザー bayashiko_rbayashiko_r
提出日時 2019-01-06 16:39:34
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 585 bytes
コンパイル時間 4,347 ms
コンパイル使用メモリ 107,736 KB
実行使用メモリ 49,572 KB
最終ジャッジ日時 2024-11-23 23:52:59
合計ジャッジ時間 15,741 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
30,208 KB
testcase_01 WA -
testcase_02 TLE -
testcase_03 WA -
testcase_04 AC 29 ms
32,376 KB
testcase_05 AC 29 ms
45,352 KB
testcase_06 WA -
testcase_07 AC 30 ms
23,240 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 27 ms
23,368 KB
testcase_12 WA -
testcase_13 AC 28 ms
23,492 KB
testcase_14 AC 28 ms
23,364 KB
testcase_15 AC 28 ms
23,392 KB
testcase_16 AC 28 ms
21,304 KB
testcase_17 AC 27 ms
23,392 KB
testcase_18 AC 27 ms
23,264 KB
testcase_19 AC 28 ms
25,420 KB
testcase_20 AC 30 ms
25,344 KB
testcase_21 AC 28 ms
23,368 KB
testcase_22 AC 28 ms
23,264 KB
testcase_23 AC 27 ms
23,776 KB
testcase_24 AC 27 ms
23,512 KB
testcase_25 AC 28 ms
23,596 KB
testcase_26 AC 28 ms
23,636 KB
testcase_27 AC 28 ms
23,604 KB
testcase_28 AC 27 ms
23,264 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 27 ms
23,632 KB
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 27 ms
23,596 KB
testcase_36 AC 29 ms
23,648 KB
testcase_37 AC 28 ms
25,672 KB
testcase_38 AC 28 ms
23,628 KB
testcase_39 AC 27 ms
25,544 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 28 ms
23,600 KB
testcase_43 AC 29 ms
25,692 KB
testcase_44 AC 26 ms
43,800 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) {
        //入力
        ulong N = ulong.Parse(Console.ReadLine());

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

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

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