結果

問題 No.810 割った余りの個数
ユーザー GrenacheGrenache
提出日時 2019-04-26 17:00:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 3,522 ms
コンパイル使用メモリ 74,804 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-11-24 15:34:09
合計ジャッジ時間 8,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,112 KB
testcase_01 AC 141 ms
53,788 KB
testcase_02 AC 140 ms
53,664 KB
testcase_03 AC 135 ms
54,220 KB
testcase_04 AC 134 ms
54,028 KB
testcase_05 AC 139 ms
54,184 KB
testcase_06 AC 136 ms
53,984 KB
testcase_07 AC 129 ms
53,656 KB
testcase_08 AC 138 ms
54,172 KB
testcase_09 AC 135 ms
53,980 KB
testcase_10 AC 133 ms
54,384 KB
testcase_11 AC 132 ms
53,972 KB
testcase_12 AC 131 ms
53,948 KB
testcase_13 AC 131 ms
53,984 KB
testcase_14 AC 133 ms
53,964 KB
testcase_15 AC 136 ms
54,296 KB
testcase_16 AC 116 ms
53,064 KB
testcase_17 AC 139 ms
53,828 KB
testcase_18 AC 132 ms
54,016 KB
testcase_19 AC 133 ms
53,660 KB
testcase_20 AC 134 ms
53,944 KB
testcase_21 AC 136 ms
53,828 KB
testcase_22 AC 133 ms
53,672 KB
testcase_23 AC 131 ms
53,996 KB
testcase_24 AC 117 ms
53,036 KB
testcase_25 AC 130 ms
53,864 KB
testcase_26 AC 133 ms
53,996 KB
testcase_27 AC 118 ms
52,992 KB
testcase_28 AC 137 ms
53,820 KB
testcase_29 AC 134 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder810 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int l = sc.nextInt();
		int r = sc.nextInt();
		int m = sc.nextInt();

		pr.println(Math.min(r - l + 1, m));
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0