結果

問題 No.1663 Maximum Remainder
ユーザー みーすけみーすけ
提出日時 2021-10-03 12:23:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 1,755 ms
コンパイル使用メモリ 73,676 KB
実行使用メモリ 41,384 KB
最終ジャッジ日時 2024-07-21 06:16:23
合計ジャッジ時間 4,235 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,064 KB
testcase_01 AC 125 ms
41,096 KB
testcase_02 AC 102 ms
39,816 KB
testcase_03 AC 115 ms
41,216 KB
testcase_04 AC 110 ms
41,268 KB
testcase_05 AC 110 ms
40,848 KB
testcase_06 AC 112 ms
41,272 KB
testcase_07 AC 119 ms
41,344 KB
testcase_08 AC 100 ms
40,120 KB
testcase_09 AC 107 ms
40,768 KB
testcase_10 AC 108 ms
41,116 KB
testcase_11 AC 115 ms
41,252 KB
testcase_12 AC 114 ms
41,384 KB
testcase_13 AC 114 ms
41,220 KB
testcase_14 AC 110 ms
40,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int c = sc.nextInt();
        int d = sc.nextInt();
        int m = sc.nextInt();

        int max = 0;
        for (int i = a; i <= b; i++) {
            for (int j = c; j <= d; j++) {
                int v = (i + j) % m;
                if (v > max)
                    max = v;
            }
        }
        System.out.println(max);
    }
}
0