結果

問題 No.1109 調の判定
ユーザー tentententen
提出日時 2022-09-14 08:57:41
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,092 KB
testcase_01 AC 57 ms
49,876 KB
testcase_02 AC 57 ms
49,988 KB
testcase_03 AC 56 ms
50,268 KB
testcase_04 AC 56 ms
49,876 KB
testcase_05 AC 57 ms
49,940 KB
testcase_06 AC 56 ms
50,248 KB
testcase_07 AC 56 ms
50,332 KB
testcase_08 AC 57 ms
49,956 KB
testcase_09 AC 56 ms
49,840 KB
testcase_10 AC 58 ms
50,224 KB
testcase_11 AC 58 ms
50,148 KB
testcase_12 AC 56 ms
50,272 KB
testcase_13 AC 59 ms
50,244 KB
testcase_14 AC 57 ms
50,244 KB
testcase_15 AC 56 ms
50,208 KB
testcase_16 AC 57 ms
50,204 KB
testcase_17 AC 58 ms
50,160 KB
testcase_18 AC 55 ms
50,292 KB
testcase_19 AC 56 ms
50,132 KB
testcase_20 AC 56 ms
49,844 KB
testcase_21 AC 57 ms
50,268 KB
testcase_22 AC 56 ms
50,384 KB
testcase_23 AC 57 ms
50,304 KB
testcase_24 AC 57 ms
50,228 KB
testcase_25 AC 56 ms
50,148 KB
testcase_26 AC 57 ms
50,288 KB
testcase_27 AC 57 ms
49,844 KB
testcase_28 AC 57 ms
50,100 KB
testcase_29 AC 57 ms
49,968 KB
testcase_30 AC 56 ms
50,056 KB
testcase_31 AC 55 ms
50,216 KB
testcase_32 AC 56 ms
49,872 KB
testcase_33 AC 58 ms
49,832 KB
testcase_34 AC 57 ms
50,352 KB
testcase_35 AC 56 ms
50,260 KB
testcase_36 AC 57 ms
50,244 KB
testcase_37 AC 57 ms
50,372 KB
testcase_38 AC 56 ms
50,400 KB
testcase_39 AC 57 ms
49,888 KB
testcase_40 AC 57 ms
49,864 KB
testcase_41 AC 58 ms
49,940 KB
testcase_42 AC 60 ms
50,136 KB
testcase_43 AC 57 ms
50,092 KB
testcase_44 AC 55 ms
49,936 KB
testcase_45 AC 58 ms
50,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    }
    
}
0