結果

問題 No.1109 調の判定
ユーザー cielciel
提出日時 2021-06-05 02:58:53
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 76,684 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-04-30 20:17:52
合計ジャッジ時間 5,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
75,788 KB
testcase_01 AC 79 ms
75,892 KB
testcase_02 AC 79 ms
75,836 KB
testcase_03 AC 81 ms
75,688 KB
testcase_04 AC 78 ms
75,956 KB
testcase_05 AC 79 ms
75,292 KB
testcase_06 AC 78 ms
75,836 KB
testcase_07 AC 80 ms
75,420 KB
testcase_08 AC 80 ms
75,400 KB
testcase_09 AC 79 ms
75,688 KB
testcase_10 AC 78 ms
75,396 KB
testcase_11 AC 79 ms
75,688 KB
testcase_12 AC 76 ms
75,664 KB
testcase_13 AC 80 ms
75,924 KB
testcase_14 AC 79 ms
75,420 KB
testcase_15 AC 80 ms
75,912 KB
testcase_16 AC 77 ms
76,032 KB
testcase_17 AC 78 ms
75,296 KB
testcase_18 AC 80 ms
75,660 KB
testcase_19 AC 79 ms
75,904 KB
testcase_20 AC 79 ms
75,300 KB
testcase_21 AC 78 ms
75,416 KB
testcase_22 AC 79 ms
75,672 KB
testcase_23 AC 78 ms
75,464 KB
testcase_24 AC 80 ms
75,624 KB
testcase_25 AC 80 ms
75,780 KB
testcase_26 AC 81 ms
75,800 KB
testcase_27 AC 80 ms
75,540 KB
testcase_28 AC 81 ms
75,660 KB
testcase_29 AC 78 ms
75,668 KB
testcase_30 AC 80 ms
75,932 KB
testcase_31 AC 78 ms
75,656 KB
testcase_32 AC 76 ms
75,664 KB
testcase_33 AC 79 ms
75,884 KB
testcase_34 AC 80 ms
75,416 KB
testcase_35 AC 79 ms
75,964 KB
testcase_36 AC 77 ms
75,960 KB
testcase_37 AC 77 ms
75,676 KB
testcase_38 AC 78 ms
75,708 KB
testcase_39 AC 78 ms
75,672 KB
testcase_40 AC 79 ms
75,392 KB
testcase_41 AC 80 ms
75,804 KB
testcase_42 AC 79 ms
75,432 KB
testcase_43 AC 79 ms
75,508 KB
testcase_44 AC 79 ms
75,660 KB
testcase_45 AC 78 ms
75,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
#coding:utf-8
#CodeIQ "Detect Music Key"やらCheckiO "Rotate Hole"やらで既出.此方の関数はCheckiOのコピー.
rotate=lambda state,pipe_numbers: [i for i in range(len(state)) if all(state[j%len(state)] or (i+j)%len(state) not in set(pipe_numbers) for j in range(len(state)))]

if __name__=='__main__':
	state=[1,0,1,0,1,1,0,1,0,1,0,1]
	import sys
	r=rotate(state,[int(e) for e in sys.stdin.read().split()[1:]])
	print(r[0] if len(r)==1 else -1)
0