結果
| 問題 |
No.1225 I hate I hate Matrix Construction
|
| コンテスト | |
| ユーザー |
yama2019
|
| 提出日時 | 2020-09-11 22:03:32 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 58 ms / 2,000 ms |
| コード長 | 2,698 bytes |
| コンパイル時間 | 2,336 ms |
| コンパイル使用メモリ | 77,520 KB |
| 実行使用メモリ | 37,036 KB |
| 最終ジャッジ日時 | 2024-12-27 12:50:19 |
| 合計ジャッジ時間 | 5,899 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 35 |
ソースコード
import java.io.*;
import java.util.*;
import static java.lang.System.out;
public class Main {
static MyReader in = new MyReader();
public static void main(String[] args) {
int N = in.i();
int[] s = new int[3];
for (int i = 0; i < N; i++) {
s[in.i()]++;
}
int[] t = new int[3];
for (int i = 0; i < N; i++) {
t[in.i()]++;
}
int ans;
if (s[2] > 0 || t[2] > 0) {
ans = (s[2] + t[2]) * N - s[2] * t[2];
if (s[2] == 0) {
ans += t[1];
} else if (t[2] == 0) {
ans += s[1];
}
}
else {
ans = Math.max(s[1], t[1]);
}
out.println(ans);
}
}
class MyReader extends BufferedReader {
char[] cbuf = new char[1024];
int head = 0;
int tail = 0;
MyReader() {
super(new InputStreamReader(System.in));
}
char next() {
if (head == tail) {
try {
tail = super.read(cbuf, 0, cbuf.length);
} catch (IOException e) {
e.printStackTrace();
}
head = 0;
}
return cbuf[head++];
}
void back() {
head--;
}
boolean minus() {
boolean minus;
while (true) {
char c = next();
if (!isDelimiter(c)) {
if (!(minus = c == '-')) back();
return minus;
}
}
}
void skip() {
while (isDelimiter(next()));
back();
}
char[] s(int N) {
char[] cbuf = new char[N];
read(cbuf, 0, N);
return cbuf;
}
public int read(char[] cbuf, int off, int len) {
skip();
int i;
for (i = 0; i < cbuf.length; i++) {
char c = next();
if (isDelimiter(c)) {
break;
}
cbuf[i] = c;
}
return i;
}
boolean isDelimiter(char c) {
return c == ' ' || c == '\n' || c == '\r';
}
int i() {
boolean minus = minus();
int n = 0;
while (true) {
int k = next() - '0';
if (k < 0 || 9 < k) break;
n = 10 * n + k;
}
return minus ? -n : n;
}
int[] ii(final int N) {
int[] a = new int[N];
for (int j = 0; j < a.length; j++) a[j] = i();
return a;
}
long l() {
boolean minus = minus();
long n = 0;
while (true) {
int k = next() - '0';
if (k < 0 || 9 < k) break;
n = 10 * n + k;
}
return minus ? -n : n;
}
}
yama2019