結果

問題 No.1312 Snake Eyes
ユーザー kakel-sankakel-san
提出日時 2024-09-28 20:27:22
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 1,114 bytes
コンパイル時間 8,822 ms
コンパイル使用メモリ 166,412 KB
実行使用メモリ 208,012 KB
最終ジャッジ日時 2024-09-28 20:27:40
合計ジャッジ時間 15,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
28,928 KB
testcase_01 AC 50 ms
29,440 KB
testcase_02 AC 49 ms
29,568 KB
testcase_03 AC 49 ms
29,440 KB
testcase_04 AC 48 ms
29,552 KB
testcase_05 AC 50 ms
29,568 KB
testcase_06 AC 50 ms
29,440 KB
testcase_07 AC 49 ms
29,440 KB
testcase_08 AC 48 ms
28,928 KB
testcase_09 AC 48 ms
28,928 KB
testcase_10 AC 49 ms
29,568 KB
testcase_11 AC 47 ms
29,568 KB
testcase_12 AC 49 ms
29,440 KB
testcase_13 AC 50 ms
29,440 KB
testcase_14 AC 49 ms
29,568 KB
testcase_15 AC 48 ms
29,044 KB
testcase_16 AC 49 ms
29,568 KB
testcase_17 AC 48 ms
29,056 KB
testcase_18 AC 54 ms
29,556 KB
testcase_19 AC 48 ms
29,056 KB
testcase_20 AC 48 ms
29,056 KB
testcase_21 AC 48 ms
29,568 KB
testcase_22 AC 49 ms
29,184 KB
testcase_23 AC 50 ms
29,044 KB
testcase_24 AC 51 ms
29,440 KB
testcase_25 AC 50 ms
29,044 KB
testcase_26 AC 48 ms
29,556 KB
testcase_27 AC 50 ms
29,552 KB
testcase_28 AC 51 ms
29,440 KB
testcase_29 AC 50 ms
29,044 KB
testcase_30 AC 50 ms
29,420 KB
testcase_31 AC 49 ms
29,568 KB
testcase_32 AC 50 ms
29,056 KB
testcase_33 AC 48 ms
29,568 KB
testcase_34 AC 51 ms
29,176 KB
testcase_35 AC 49 ms
29,176 KB
testcase_36 AC 49 ms
29,056 KB
testcase_37 AC 54 ms
29,440 KB
testcase_38 AC 61 ms
31,616 KB
testcase_39 AC 67 ms
33,024 KB
testcase_40 AC 63 ms
33,388 KB
testcase_41 AC 61 ms
32,512 KB
testcase_42 AC 52 ms
30,080 KB
testcase_43 AC 63 ms
32,768 KB
testcase_44 AC 52 ms
30,336 KB
testcase_45 AC 63 ms
32,512 KB
testcase_46 AC 64 ms
32,880 KB
testcase_47 AC 63 ms
31,616 KB
testcase_48 AC 134 ms
54,016 KB
testcase_49 AC 129 ms
53,760 KB
testcase_50 AC 122 ms
53,752 KB
testcase_51 AC 108 ms
53,620 KB
testcase_52 AC 152 ms
53,888 KB
testcase_53 AC 133 ms
53,620 KB
testcase_54 AC 143 ms
54,016 KB
testcase_55 AC 109 ms
53,888 KB
testcase_56 AC 116 ms
53,760 KB
testcase_57 AC 119 ms
53,868 KB
testcase_58 AC 133 ms
53,888 KB
testcase_59 AC 94 ms
53,620 KB
testcase_60 AC 132 ms
54,016 KB
testcase_61 AC 146 ms
53,760 KB
testcase_62 AC 99 ms
54,004 KB
testcase_63 AC 48 ms
29,556 KB
testcase_64 AC 50 ms
29,440 KB
testcase_65 AC 47 ms
29,440 KB
testcase_66 AC 49 ms
29,184 KB
testcase_67 AC 51 ms
29,568 KB
testcase_68 AC 48 ms
29,440 KB
testcase_69 AC 50 ms
29,440 KB
testcase_70 AC 49 ms
29,312 KB
testcase_71 AC 47 ms
29,556 KB
testcase_72 AC 47 ms
29,556 KB
testcase_73 AC 46 ms
29,556 KB
testcase_74 AC 49 ms
29,056 KB
testcase_75 AC 51 ms
29,044 KB
testcase_76 AC 155 ms
54,004 KB
testcase_77 AC 155 ms
53,620 KB
testcase_78 AC 143 ms
53,760 KB
testcase_79 AC 48 ms
29,312 KB
testcase_80 AC 143 ms
53,888 KB
testcase_81 AC 123 ms
54,136 KB
testcase_82 AC 53 ms
30,208 KB
testcase_83 AC 154 ms
53,868 KB
testcase_84 AC 153 ms
53,620 KB
testcase_85 AC 50 ms
29,312 KB
testcase_86 AC 54 ms
29,044 KB
testcase_87 AC 113 ms
208,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (97 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = long.Parse(ReadLine());
        var sq = (int)Math.Ceiling(Math.Sqrt(n)) + 1;
        for (var i = 2L; i <= sq; ++i)
        {
            if (Check(n, i))
            {
                WriteLine(i);
                return;
            }
        }
        for (var i = sq; i > 0; --i)
        {
            if (n % i == 0 && n / i > 2 && n / i - 1 > i)
            {
                WriteLine(n / i - 1);
                return;
            }
        }
    }
    static bool Check(long n, long p)
    {
        var list = new List<long>();
        while (n > 0)
        {
            list.Add(n % p);
            if (list.Count > 1 && list[^1] != list[^2]) return false;
            n /= p;
        }
        return true;
    }
}
0