結果

問題 No.1109 調の判定
ユーザー keijakkeijak
提出日時 2020-07-10 21:27:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 542 ms / 2,000 ms
コード長 591 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,528 KB
最終ジャッジ日時 2024-10-11 07:45:53
合計ジャッジ時間 26,571 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 522 ms
43,728 KB
testcase_01 AC 522 ms
44,080 KB
testcase_02 AC 521 ms
43,692 KB
testcase_03 AC 520 ms
43,828 KB
testcase_04 AC 512 ms
44,460 KB
testcase_05 AC 518 ms
44,204 KB
testcase_06 AC 542 ms
43,948 KB
testcase_07 AC 520 ms
44,084 KB
testcase_08 AC 520 ms
43,940 KB
testcase_09 AC 521 ms
44,472 KB
testcase_10 AC 518 ms
43,820 KB
testcase_11 AC 513 ms
44,216 KB
testcase_12 AC 524 ms
43,856 KB
testcase_13 AC 517 ms
43,940 KB
testcase_14 AC 521 ms
43,808 KB
testcase_15 AC 523 ms
44,528 KB
testcase_16 AC 525 ms
44,080 KB
testcase_17 AC 523 ms
44,208 KB
testcase_18 AC 523 ms
43,820 KB
testcase_19 AC 531 ms
44,072 KB
testcase_20 AC 531 ms
43,820 KB
testcase_21 AC 527 ms
43,692 KB
testcase_22 AC 535 ms
44,088 KB
testcase_23 AC 531 ms
43,820 KB
testcase_24 AC 530 ms
44,204 KB
testcase_25 AC 537 ms
44,200 KB
testcase_26 AC 524 ms
43,944 KB
testcase_27 AC 526 ms
44,460 KB
testcase_28 AC 525 ms
43,948 KB
testcase_29 AC 519 ms
44,204 KB
testcase_30 AC 522 ms
43,688 KB
testcase_31 AC 523 ms
44,212 KB
testcase_32 AC 527 ms
44,072 KB
testcase_33 AC 516 ms
43,820 KB
testcase_34 AC 519 ms
43,948 KB
testcase_35 AC 536 ms
44,196 KB
testcase_36 AC 516 ms
44,460 KB
testcase_37 AC 514 ms
43,948 KB
testcase_38 AC 517 ms
44,084 KB
testcase_39 AC 522 ms
43,948 KB
testcase_40 AC 519 ms
43,944 KB
testcase_41 AC 518 ms
43,948 KB
testcase_42 AC 524 ms
44,468 KB
testcase_43 AC 530 ms
44,204 KB
testcase_44 AC 528 ms
44,336 KB
testcase_45 AC 532 ms
43,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import numpy as np

sys.setrecursionlimit(10 ** 8)
ini = lambda: int(sys.stdin.readline())
inm = lambda: map(int, sys.stdin.readline().split())
inl = lambda: list(inm())
ins = lambda: sys.stdin.readline().rstrip()
debug = lambda *a, **kw: print("\033[33m", *a, "\033[0m", **dict(file=sys.stderr, **kw))

N = ini()
T = set(inl())
M = 12


def solve():
    ans = set()
    for d in range(12):
        s = {(d + i) % 12 for i in [0, 2, 4, 5, 7, 9, 11]}
        if T.issubset(s):
            ans.add(d)
    if len(ans) == 1:
        return list(ans)[0]
    return -1


print(solve())
0