結果
問題 | No.663 セルオートマトンの逆操作 |
ユーザー | Mr.Fuku |
提出日時 | 2018-08-06 19:39:10 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 619 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-19 18:17:42 |
合計ジャッジ時間 | 2,007 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 27 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | AC | 26 ms
10,624 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 27 ms
10,752 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 28 ms
10,752 KB |
testcase_18 | AC | 28 ms
10,624 KB |
testcase_19 | AC | 27 ms
10,624 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
ソースコード
n = int(input()) cell = ["000","001","010","011","100","101","110","111"] dic = {"000":0,"001":1,"010":1,"011":1,"100":0,"101":1,"110":1,"111":0} def check(nummber,x,s_i=0,t_i=3): n_set = set() for n in nummber: if dic[n]==x: n_set.add(n[s_i:t_i]) return n_set x = int(input()) start_c = check(cell,x,0,3) c = check(start_c,x,1,3) for i in range(n-1): lst = [] for j in c: lst.append(j+"0") lst.append(j+"1") x = int(input()) c = check(lst,x,1,3) cnt = 0 for i in c: for j in range(2): if i+str(j) in start_c: cnt+=1 print(cnt)