結果

問題 No.1109 調の判定
ユーザー 双六双六
提出日時 2020-09-07 01:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 56,044 KB
最終ジャッジ日時 2024-05-06 21:42:42
合計ジャッジ時間 3,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,188 KB
testcase_01 AC 42 ms
53,816 KB
testcase_02 AC 43 ms
54,204 KB
testcase_03 AC 42 ms
55,868 KB
testcase_04 AC 42 ms
55,084 KB
testcase_05 AC 42 ms
54,184 KB
testcase_06 AC 43 ms
55,524 KB
testcase_07 AC 44 ms
53,616 KB
testcase_08 AC 46 ms
54,792 KB
testcase_09 AC 47 ms
55,412 KB
testcase_10 AC 46 ms
54,716 KB
testcase_11 AC 43 ms
54,712 KB
testcase_12 AC 43 ms
54,720 KB
testcase_13 AC 43 ms
53,492 KB
testcase_14 AC 46 ms
55,644 KB
testcase_15 AC 42 ms
54,672 KB
testcase_16 AC 42 ms
53,792 KB
testcase_17 AC 42 ms
54,348 KB
testcase_18 AC 50 ms
54,488 KB
testcase_19 AC 43 ms
54,732 KB
testcase_20 AC 46 ms
54,404 KB
testcase_21 AC 43 ms
53,892 KB
testcase_22 AC 45 ms
53,996 KB
testcase_23 AC 42 ms
55,000 KB
testcase_24 AC 43 ms
54,740 KB
testcase_25 AC 43 ms
54,252 KB
testcase_26 AC 44 ms
54,524 KB
testcase_27 AC 43 ms
53,996 KB
testcase_28 AC 43 ms
54,060 KB
testcase_29 AC 43 ms
54,516 KB
testcase_30 AC 44 ms
54,804 KB
testcase_31 AC 43 ms
55,180 KB
testcase_32 AC 43 ms
54,976 KB
testcase_33 AC 42 ms
55,112 KB
testcase_34 AC 42 ms
54,200 KB
testcase_35 AC 42 ms
54,484 KB
testcase_36 AC 43 ms
55,052 KB
testcase_37 AC 42 ms
56,044 KB
testcase_38 AC 42 ms
53,968 KB
testcase_39 AC 43 ms
55,488 KB
testcase_40 AC 43 ms
54,516 KB
testcase_41 AC 43 ms
54,060 KB
testcase_42 AC 42 ms
54,216 KB
testcase_43 AC 43 ms
54,980 KB
testcase_44 AC 43 ms
53,504 KB
testcase_45 AC 43 ms
54,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N = int(input())
	T = getlist()
	L = [0, 2, 4, 5, 7, 9, 11]
	D = -1
	for d in range(12):
		jud = 1
		for i in T:
			if not ((d + i) % 12 in L):
				jud = 0
				break

		if jud == 1:
			# print(d)
			if D == -1:
				D = (12 - d) % 12
			else:
				print(-1)
				return

	if D == -1:
		print(-1)
	else:
		print(D)

if __name__ == '__main__':
	main()
0