結果

問題 No.1109 調の判定
ユーザー Maeda, KazuyaMaeda, Kazuya
提出日時 2020-07-10 21:43:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 54,124 KB
最終ジャッジ日時 2024-10-11 08:37:30
合計ジャッジ時間 3,178 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,876 KB
testcase_01 AC 37 ms
53,004 KB
testcase_02 WA -
testcase_03 AC 37 ms
52,072 KB
testcase_04 AC 38 ms
52,516 KB
testcase_05 AC 36 ms
52,756 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 36 ms
52,428 KB
testcase_09 AC 38 ms
52,460 KB
testcase_10 AC 38 ms
52,216 KB
testcase_11 AC 37 ms
52,408 KB
testcase_12 AC 38 ms
52,072 KB
testcase_13 AC 38 ms
53,208 KB
testcase_14 AC 38 ms
53,232 KB
testcase_15 AC 37 ms
52,616 KB
testcase_16 AC 38 ms
52,992 KB
testcase_17 AC 37 ms
53,500 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 38 ms
52,744 KB
testcase_27 AC 38 ms
52,332 KB
testcase_28 WA -
testcase_29 AC 38 ms
53,408 KB
testcase_30 AC 37 ms
52,524 KB
testcase_31 WA -
testcase_32 AC 37 ms
53,312 KB
testcase_33 WA -
testcase_34 AC 38 ms
52,420 KB
testcase_35 AC 38 ms
52,912 KB
testcase_36 AC 37 ms
51,752 KB
testcase_37 AC 37 ms
52,380 KB
testcase_38 AC 37 ms
52,764 KB
testcase_39 AC 38 ms
52,268 KB
testcase_40 AC 37 ms
53,616 KB
testcase_41 AC 36 ms
52,832 KB
testcase_42 WA -
testcase_43 AC 37 ms
53,088 KB
testcase_44 AC 38 ms
53,216 KB
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
t = list(map(int, input().split()))

for d in range(12):
    # flag = False
    if all(sound in [d, (d+2) % 12, (d+4)%12, (d+5)%12, (d+7)%12, (d+9)%12, (d+11)%12] for sound in t):
        print(d)
        exit()

print(-1)
0