結果

問題 No.810 割った余りの個数
ユーザー GrenacheGrenache
提出日時 2019-04-26 17:00:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 3,729 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-05-03 14:38:55
合計ジャッジ時間 9,047 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,284 KB
testcase_01 AC 133 ms
41,464 KB
testcase_02 AC 136 ms
41,180 KB
testcase_03 AC 135 ms
41,328 KB
testcase_04 AC 116 ms
40,224 KB
testcase_05 AC 135 ms
41,344 KB
testcase_06 AC 134 ms
41,584 KB
testcase_07 AC 138 ms
41,376 KB
testcase_08 AC 122 ms
40,148 KB
testcase_09 AC 133 ms
41,244 KB
testcase_10 AC 132 ms
41,424 KB
testcase_11 AC 118 ms
40,148 KB
testcase_12 AC 138 ms
41,432 KB
testcase_13 AC 138 ms
41,600 KB
testcase_14 AC 133 ms
41,532 KB
testcase_15 AC 136 ms
41,280 KB
testcase_16 AC 143 ms
41,728 KB
testcase_17 AC 138 ms
41,300 KB
testcase_18 AC 139 ms
41,668 KB
testcase_19 AC 135 ms
41,148 KB
testcase_20 AC 139 ms
41,408 KB
testcase_21 AC 136 ms
41,136 KB
testcase_22 AC 136 ms
41,264 KB
testcase_23 AC 135 ms
41,552 KB
testcase_24 AC 121 ms
40,260 KB
testcase_25 AC 127 ms
40,960 KB
testcase_26 AC 138 ms
41,448 KB
testcase_27 AC 136 ms
41,200 KB
testcase_28 AC 129 ms
41,284 KB
testcase_29 AC 135 ms
41,280 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