結果
| 問題 |
No.1109 調の判定
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2022-09-14 08:57:41 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 60 ms / 2,000 ms |
| コード長 | 1,713 bytes |
| コンパイル時間 | 2,406 ms |
| コンパイル使用メモリ | 77,856 KB |
| 実行使用メモリ | 50,400 KB |
| 最終ジャッジ日時 | 2024-12-14 18:34:04 |
| 合計ジャッジ時間 | 6,757 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 43 |
ソースコード
import java.io.*;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
int n = sc.nextInt();
int[] values = new int[n];
for (int i = 0; i < n; i++) {
values[i] = sc.nextInt();
}
int[] bases = new int[]{0, 2, 4, 5, 7, 9, 11};
HashSet<Integer> enables = new HashSet<>();
for (int x : bases) {
enables.add(x);
}
int ans = -1;
for (int i = 0; i < 12; i++) {
boolean can = true;
for (int j = 0; j < n && can; j++) {
can = enables.contains((values[j] - i + 12) % 12);
}
if (can) {
if (ans == -1) {
ans = i;
} else {
System.out.println(-1);
return;
}
}
}
System.out.println(ans);
}
}
class Scanner {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer("");
StringBuilder sb = new StringBuilder();
public Scanner() throws Exception {
}
public int nextInt() throws Exception {
return Integer.parseInt(next());
}
public long nextLong() throws Exception {
return Long.parseLong(next());
}
public double nextDouble() throws Exception {
return Double.parseDouble(next());
}
public String next() throws Exception {
while (!st.hasMoreTokens()) {
st = new StringTokenizer(br.readLine());
}
return st.nextToken();
}
}
tenten