結果

問題 No.1109 調の判定
ユーザー RISE70226821RISE70226821
提出日時 2020-08-04 12:43:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,162 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 77,888 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-09-14 13:26:41
合計ジャッジ時間 9,922 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,140 KB
testcase_01 AC 133 ms
40,924 KB
testcase_02 AC 132 ms
41,344 KB
testcase_03 AC 133 ms
41,176 KB
testcase_04 AC 132 ms
41,276 KB
testcase_05 AC 134 ms
41,040 KB
testcase_06 AC 135 ms
41,120 KB
testcase_07 AC 133 ms
41,240 KB
testcase_08 AC 132 ms
41,436 KB
testcase_09 AC 133 ms
40,868 KB
testcase_10 AC 132 ms
41,728 KB
testcase_11 AC 134 ms
41,204 KB
testcase_12 AC 133 ms
41,064 KB
testcase_13 AC 132 ms
41,368 KB
testcase_14 AC 132 ms
41,320 KB
testcase_15 AC 132 ms
41,144 KB
testcase_16 AC 136 ms
41,536 KB
testcase_17 AC 135 ms
41,472 KB
testcase_18 AC 134 ms
40,940 KB
testcase_19 AC 134 ms
40,920 KB
testcase_20 AC 133 ms
41,292 KB
testcase_21 AC 133 ms
41,076 KB
testcase_22 AC 132 ms
40,820 KB
testcase_23 AC 131 ms
41,048 KB
testcase_24 AC 133 ms
40,836 KB
testcase_25 AC 133 ms
41,012 KB
testcase_26 AC 132 ms
41,240 KB
testcase_27 AC 119 ms
40,920 KB
testcase_28 AC 132 ms
41,012 KB
testcase_29 AC 133 ms
41,192 KB
testcase_30 AC 128 ms
41,432 KB
testcase_31 AC 132 ms
41,004 KB
testcase_32 AC 132 ms
40,840 KB
testcase_33 AC 134 ms
41,108 KB
testcase_34 AC 133 ms
40,788 KB
testcase_35 AC 133 ms
41,156 KB
testcase_36 AC 134 ms
40,948 KB
testcase_37 AC 137 ms
41,260 KB
testcase_38 AC 135 ms
41,216 KB
testcase_39 AC 136 ms
40,948 KB
testcase_40 AC 135 ms
41,112 KB
testcase_41 AC 133 ms
41,040 KB
testcase_42 AC 121 ms
40,072 KB
testcase_43 AC 129 ms
40,912 KB
testcase_44 AC 132 ms
41,180 KB
testcase_45 AC 121 ms
39,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.lang.*;
import java.io.*;

public class Main {
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		// 入力
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int[] T = new int[N];
		for(int i = 0; i < N; i++){
			T[i] = sc.nextInt();
		}
		
		// 調リストの作成
		List<List<Integer>> listChou = new ArrayList<>();
		for(int i = 0; i < 12; i++){
			List<Integer> chou = new ArrayList<>();
			chou.add(i % 12);
			chou.add((i+2) % 12);
			chou.add((i+4) % 12);
			chou.add((i+5) % 12);
			chou.add((i+7) % 12);
			chou.add((i+9) % 12);
			chou.add((i+11) % 12);
			listChou.add(chou);
		}
		
		// 調の決定
		int result = -1;
		for(int i = 0; i < 12; i++){
			List<Integer> chou = listChou.get(i);
			boolean matching = true;
			for(int j = 0; j < N; j++){
				if(!chou.contains(T[j])){
					matching = false;
					break;
				}
			}
			
			if(matching){
				if(result == -1){
					result = i;
				}else{
					result = -1;
					break;
				}
			}
		}
		
		
		// 出力
		System.out.println(result);
	}

}
0