結果

問題 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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

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