回答編集履歴

1

修正

2019/09/13 05:02

投稿

can110
can110

スコア38266

test CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  for s in ['{}{}'.format(s,n) for n,s in itertools.product(range(1,100), 'abcde')]:
14
14
 
15
- if re.match('[b|c|d|][0-9]+', s):
15
+ if re.match('[b|c][0-9]+', s):
16
16
 
17
17
  print(s)
18
18
 
@@ -22,8 +22,6 @@
22
22
 
23
23
  c1
24
24
 
25
- d1
26
-
27
25
  :
28
26
 
29
27
  """