結果

問題 No.1312 Snake Eyes
ユーザー kakel-sankakel-san
提出日時 2024-09-28 20:21:55
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,084 bytes
コンパイル時間 9,455 ms
コンパイル使用メモリ 167,324 KB
実行使用メモリ 210,432 KB
最終ジャッジ日時 2024-09-28 20:22:17
合計ジャッジ時間 16,625 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
29,556 KB
testcase_01 WA -
testcase_02 AC 52 ms
29,184 KB
testcase_03 AC 52 ms
29,440 KB
testcase_04 AC 51 ms
29,052 KB
testcase_05 AC 52 ms
29,056 KB
testcase_06 AC 51 ms
29,056 KB
testcase_07 AC 51 ms
29,552 KB
testcase_08 WA -
testcase_09 AC 52 ms
29,312 KB
testcase_10 AC 51 ms
31,460 KB
testcase_11 WA -
testcase_12 AC 52 ms
29,568 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 51 ms
29,440 KB
testcase_16 AC 49 ms
29,440 KB
testcase_17 AC 51 ms
29,552 KB
testcase_18 AC 50 ms
29,440 KB
testcase_19 AC 51 ms
29,688 KB
testcase_20 AC 50 ms
29,156 KB
testcase_21 AC 50 ms
29,556 KB
testcase_22 AC 50 ms
29,568 KB
testcase_23 AC 50 ms
29,176 KB
testcase_24 AC 52 ms
29,568 KB
testcase_25 AC 49 ms
29,312 KB
testcase_26 AC 50 ms
29,440 KB
testcase_27 AC 51 ms
29,156 KB
testcase_28 AC 50 ms
29,184 KB
testcase_29 AC 49 ms
29,696 KB
testcase_30 AC 50 ms
29,052 KB
testcase_31 AC 50 ms
29,440 KB
testcase_32 AC 52 ms
29,552 KB
testcase_33 AC 49 ms
29,176 KB
testcase_34 AC 49 ms
29,696 KB
testcase_35 AC 49 ms
29,056 KB
testcase_36 AC 50 ms
29,176 KB
testcase_37 AC 50 ms
29,440 KB
testcase_38 AC 64 ms
31,232 KB
testcase_39 AC 66 ms
33,280 KB
testcase_40 AC 69 ms
33,536 KB
testcase_41 AC 68 ms
32,640 KB
testcase_42 AC 50 ms
30,080 KB
testcase_43 AC 65 ms
33,020 KB
testcase_44 AC 51 ms
30,188 KB
testcase_45 AC 65 ms
32,512 KB
testcase_46 AC 63 ms
32,768 KB
testcase_47 AC 63 ms
31,744 KB
testcase_48 AC 139 ms
53,760 KB
testcase_49 AC 138 ms
54,016 KB
testcase_50 AC 124 ms
53,888 KB
testcase_51 AC 103 ms
54,016 KB
testcase_52 AC 158 ms
53,888 KB
testcase_53 AC 135 ms
54,004 KB
testcase_54 AC 146 ms
53,888 KB
testcase_55 AC 109 ms
53,888 KB
testcase_56 AC 117 ms
53,632 KB
testcase_57 AC 122 ms
53,752 KB
testcase_58 AC 134 ms
53,632 KB
testcase_59 AC 95 ms
53,888 KB
testcase_60 AC 122 ms
53,760 KB
testcase_61 AC 156 ms
53,608 KB
testcase_62 AC 102 ms
53,888 KB
testcase_63 AC 51 ms
28,928 KB
testcase_64 AC 50 ms
29,568 KB
testcase_65 AC 50 ms
29,056 KB
testcase_66 AC 49 ms
29,552 KB
testcase_67 AC 48 ms
29,440 KB
testcase_68 AC 49 ms
29,056 KB
testcase_69 AC 49 ms
29,440 KB
testcase_70 AC 49 ms
29,568 KB
testcase_71 AC 48 ms
29,568 KB
testcase_72 AC 51 ms
29,556 KB
testcase_73 AC 51 ms
29,056 KB
testcase_74 AC 49 ms
29,440 KB
testcase_75 AC 50 ms
29,568 KB
testcase_76 AC 145 ms
53,632 KB
testcase_77 WA -
testcase_78 AC 145 ms
53,888 KB
testcase_79 AC 50 ms
29,312 KB
testcase_80 AC 145 ms
53,888 KB
testcase_81 AC 124 ms
54,016 KB
testcase_82 AC 52 ms
29,944 KB
testcase_83 WA -
testcase_84 AC 159 ms
53,632 KB
testcase_85 AC 48 ms
29,568 KB
testcase_86 AC 48 ms
29,568 KB
testcase_87 AC 117 ms
210,432 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 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)
            {
                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