回答編集履歴

1

コードの添付方法の指摘を受けました

2018/03/06 09:21

投稿

usune
usune

スコア12

test CHANGED
@@ -22,6 +22,8 @@
22
22
 
23
23
  お気に召すか解りませんがサンプル作ってみました。
24
24
 
25
+ ```python
26
+
25
27
  a = int(input())
26
28
 
27
29
  res = [list(map(lambda x: 1 if int(x) >= 47 else 0, input().split())) for i in range(a)]
@@ -31,3 +33,5 @@
31
33
  for i in res:
32
34
 
33
35
  print("{0} {1}".format(i[0], i[1]))
36
+
37
+ ```