結果

問題 No.1083 余りの余り
ユーザー Yusei KatoYusei Kato
提出日時 2020-06-22 21:15:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 30 ms / 3,000 ms
コード長 1,500 bytes
コンパイル時間 2,879 ms
コンパイル使用メモリ 114,616 KB
実行使用メモリ 27,160 KB
最終ジャッジ日時 2024-07-03 18:52:39
合計ジャッジ時間 3,476 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
24,620 KB
testcase_01 AC 29 ms
24,732 KB
testcase_02 AC 28 ms
22,820 KB
testcase_03 AC 29 ms
24,876 KB
testcase_04 AC 28 ms
24,608 KB
testcase_05 AC 28 ms
25,008 KB
testcase_06 AC 29 ms
24,884 KB
testcase_07 AC 28 ms
24,584 KB
testcase_08 AC 29 ms
26,756 KB
testcase_09 AC 28 ms
24,952 KB
testcase_10 AC 28 ms
24,860 KB
testcase_11 AC 28 ms
22,832 KB
testcase_12 AC 27 ms
25,116 KB
testcase_13 AC 27 ms
25,128 KB
testcase_14 AC 27 ms
24,748 KB
testcase_15 AC 27 ms
24,880 KB
testcase_16 AC 28 ms
24,992 KB
testcase_17 AC 28 ms
24,864 KB
testcase_18 AC 28 ms
24,880 KB
testcase_19 AC 28 ms
27,016 KB
testcase_20 AC 29 ms
24,732 KB
testcase_21 AC 28 ms
24,752 KB
testcase_22 AC 28 ms
24,992 KB
testcase_23 AC 29 ms
24,992 KB
testcase_24 AC 30 ms
24,860 KB
testcase_25 AC 30 ms
24,984 KB
testcase_26 AC 29 ms
24,768 KB
testcase_27 AC 28 ms
27,144 KB
testcase_28 AC 28 ms
22,836 KB
testcase_29 AC 29 ms
25,224 KB
testcase_30 AC 29 ms
24,860 KB
testcase_31 AC 30 ms
27,160 KB
testcase_32 AC 29 ms
27,008 KB
testcase_33 AC 29 ms
24,732 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.Collections.Generic;
using System.Linq;

namespace Problem1083
{
    class Program
    {
        static void Main(string[] args)
        {
            var buff = GetLongArray();
            long K = buff[1];
            var A = GetLongList();

            Console.WriteLine(Solver(K, A));

        }

        static long Solver (long k, List<long> list)
        {
            if (list.FindIndex(x => x <= k) == -1)
            {
                return k;
            }
            else
            {
                long temp = 0;
                long max = 0;
                for(int i = 0; i < list.Count; i++)
                {
                    if(list[i] <= k)
                    {
                        temp = Solver(k % list[i], list);
                        max = max < temp ? temp : max;
                    }
                }
                return max;
            }
        }

        public static int GetInt() => int.Parse(Console.ReadLine());
        public static int[] GetIntArray() => Console.ReadLine().Split().Select(int.Parse).ToArray();
        public static double GetDouble() => double.Parse(Console.ReadLine());
        public static double[] GetDoubleArray() => Console.ReadLine().Split().Select(double.Parse).ToArray();
        public static List<long> GetLongList() => Console.ReadLine().Split().Select(long.Parse).ToList();
        public static long[] GetLongArray() => Console.ReadLine().Split().Select(long.Parse).ToArray();

    }
}
0