Submission #1232416


Source Code Expand

import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.NoSuchElementException;

public class Main {
	int A,B,C,D;
	public void solve() {
		A = nextInt();
		B = nextInt();
		C = nextInt();
		D = nextInt();

		out.println(Math.max(A*B,C*D));
	}
	public static void main(String[] args) {
		out.flush();
		new Main().solve();
		out.close();
	}

	/* Input */
	private static final InputStream in = System.in;
	private static final PrintWriter out = new PrintWriter(System.out);
	private final byte[] buffer = new byte[2048];
	private int p = 0;
	private int buflen = 0;

	private boolean hasNextByte() {
		if (p < buflen)
			return true;
		p = 0;
		try {
			buflen = in.read(buffer);
		} catch (IOException e) {
			e.printStackTrace();
		}
		if (buflen <= 0)
			return false;
		return true;
	}

	public boolean hasNext() {
		while (hasNextByte() && !isPrint(buffer[p])) {
			p++;
		}
		return hasNextByte();
	}

	private boolean isPrint(int ch) {
		if (ch >= '!' && ch <= '~')
			return true;
		return false;
	}

	private int nextByte() {
		if (!hasNextByte())
			return -1;
		return buffer[p++];
	}

	public String next() {
		if (!hasNext())
			throw new NoSuchElementException();
		StringBuilder sb = new StringBuilder();
		int b = -1;
		while (isPrint((b = nextByte()))) {
			sb.appendCodePoint(b);
		}
		return sb.toString();
	}

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

	public long nextLong() {
		return Long.parseLong(next());
	}

	public double nextDouble() {
		return Double.parseDouble(next());
	}
}

Submission Info

Submission Time
Task A - Two Rectangles
User tookunn
Language Java8 (OpenJDK 1.8.0)
Score 100
Code Size 1655 Byte
Status AC
Exec Time 72 ms
Memory 21332 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 2
AC × 10
Set Name Test Cases
Sample sample_01.txt, sample_02.txt
All sample_01.txt, sample_02.txt, subtask_1_abmax_01.txt, subtask_1_allmax_01.txt, subtask_1_cdmax_01.txt, subtask_1_rand_01.txt, subtask_1_rand_02.txt, subtask_1_rand_03.txt, subtask_1_same_01.txt, subtask_1_same_02.txt
Case Name Status Exec Time Memory
sample_01.txt AC 70 ms 21332 KB
sample_02.txt AC 71 ms 18772 KB
subtask_1_abmax_01.txt AC 69 ms 21204 KB
subtask_1_allmax_01.txt AC 69 ms 19156 KB
subtask_1_cdmax_01.txt AC 72 ms 21204 KB
subtask_1_rand_01.txt AC 68 ms 19284 KB
subtask_1_rand_02.txt AC 72 ms 21076 KB
subtask_1_rand_03.txt AC 70 ms 20564 KB
subtask_1_same_01.txt AC 69 ms 19668 KB
subtask_1_same_02.txt AC 69 ms 18772 KB