結果

問題 No.1663 Maximum Remainder
ユーザー JetmanJetman
提出日時 2021-09-03 21:58:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 2,054 bytes
コンパイル時間 5,217 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 37,988 KB
最終ジャッジ日時 2024-12-15 13:08:02
合計ジャッジ時間 4,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.StringTokenizer;
import java.io.IOException;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.InputStream;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        FastReader in = new FastReader(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        No1663MaximumRemainder solver = new No1663MaximumRemainder();
        solver.solve(1, in, out);
        out.close();
    }

    static class No1663MaximumRemainder {
        public void solve(int testNumber, FastReader in, PrintWriter out) {
            int a = in.nextInt();
            int b = in.nextInt();
            int c = in.nextInt();
            int d = in.nextInt();

            int m = in.nextInt();
            int ans = 0;
            for (int i = a; i <= b; i++) {
                for (int j = c; j <= d; j++) {
                    ans = Math.max(ans, (i + j) % m);
                }
            }
            out.println(ans);
        }

    }

    static class FastReader {
        BufferedReader br;
        StringTokenizer st = new StringTokenizer("");

        public FastReader() {
            br = new BufferedReader(new InputStreamReader(System.in));
        }

        public FastReader(InputStream in) {
            br = new BufferedReader(new InputStreamReader(in));
        }

        public String next() {
            while (st == null || (!st.hasMoreElements())) {
                try {
                    st = new StringTokenizer(br.readLine());
                } catch (IOException e) {
                    e.printStackTrace();
                }

            }
            return st.nextToken();
        }

        public int nextInt() {
            return Integer.parseInt(next());
        }

    }
}

0