結果

問題 No.810 割った余りの個数
ユーザー ひばちひばち
提出日時 2019-04-26 22:48:57
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 1,357 ms
コンパイル使用メモリ 116,408 KB
実行使用メモリ 25,876 KB
最終ジャッジ日時 2024-11-25 05:28:20
合計ジャッジ時間 2,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
25,832 KB
testcase_01 AC 21 ms
23,712 KB
testcase_02 AC 21 ms
23,912 KB
testcase_03 AC 20 ms
23,920 KB
testcase_04 AC 20 ms
23,972 KB
testcase_05 AC 20 ms
23,660 KB
testcase_06 AC 21 ms
23,704 KB
testcase_07 AC 21 ms
23,784 KB
testcase_08 AC 22 ms
23,852 KB
testcase_09 AC 22 ms
23,660 KB
testcase_10 AC 21 ms
23,532 KB
testcase_11 AC 21 ms
25,876 KB
testcase_12 AC 21 ms
25,760 KB
testcase_13 AC 21 ms
25,756 KB
testcase_14 AC 23 ms
23,784 KB
testcase_15 AC 23 ms
25,832 KB
testcase_16 AC 21 ms
24,108 KB
testcase_17 AC 21 ms
23,920 KB
testcase_18 AC 20 ms
23,664 KB
testcase_19 AC 21 ms
25,616 KB
testcase_20 AC 20 ms
23,920 KB
testcase_21 AC 21 ms
23,784 KB
testcase_22 AC 21 ms
23,716 KB
testcase_23 AC 20 ms
23,916 KB
testcase_24 AC 21 ms
23,724 KB
testcase_25 AC 20 ms
23,536 KB
testcase_26 AC 21 ms
23,660 KB
testcase_27 AC 21 ms
21,556 KB
testcase_28 AC 20 ms
25,756 KB
testcase_29 AC 20 ms
23,916 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;
using static System.Console;
using static System.Convert;
using static System.Math;
//using Debug;
//using static System.Globalization.CultureInfo;

class Program
{
    static void Main(string[] args)
    {
        Solve();
        //WriteLine(Solve());
    }
    static void Solve()
    {
        var lrm = Input.ar;
        WriteLine(Min(lrm[2], lrm[1] - lrm[0] + 1));
    }
}

public class Input
{
    public static string read => ReadLine();
    public  static int[] ar => Array.ConvertAll(read.Split(' '), int.Parse);
    public  static int num => ToInt32(read);
    public static long[] arL => Array.ConvertAll(read.Split(' '), long.Parse);
    public  static long numL => ToInt64(read);
    public static char[][] gred(int h) 
        => Enumerable.Repeat(0, h).Select(v => read.ToCharArray()).ToArray();
    public static int[][] ar2D(int num)
        => Enumerable.Repeat(0, num).Select(v => ar).ToArray();
    public static long[][] arL2D(int num)
        => Enumerable.Repeat(0, num).Select(v => arL).ToArray();
    public const long Inf = (long)1e18;
    public const double eps = 1e-6;
    public  const string Alfa = "abcdefghijklmnopqrstuvwxyz";
    public  const int MOD = 1000000007;
}
0